Java缓存流(高效率的流)与Properties集合

2024-04-28 11:32

本文主要是介绍Java缓存流(高效率的流)与Properties集合,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Java缓存流(高效率的流)与Properties集合
1.BufferedOutStream
2.BufferedInputStream(OutputStream out)
构造方法:
参数:字节输出流的父类 FileOutString
作用:传入哪个流哪个流高效
1.实现步骤
1.1高效写入
public class Test {public static void main(String[] args) throws IOException {//1.创建字节写入文件FileOutputStream foStream = new FileOutputStream("/Users/lanou/Desktop/test/kke.txt");//2.创建高效流传入创建的文件使写入流高效BufferedOutputStream bo  = new BufferedOutputStream(foStream);bo.write("hello".getBytes());//3.写入内容foStream.close();//4.关闭字符写入流bo.close();//关闭高效流}
}
1.2高效读取
public class Test {public static void main(String[] args) throws IOException {//1.锁定字节读取流文件FileInputStream foStream = new FileInputStream("/Users/lanou/Desktop/test/kke.txt");//2.创建高效流,传入字节读取流,使字节读取流高效BufferedInputStream bo  = new BufferedInputStream(foStream);byte[] bs = new byte[1024];//3.创建读取空间大小1kbint len = 0;while ((len = bo.read(bs)) != -1) {//5.按每次1kb一指针移动的速度读取,当指针为-1时结束读取System.out.println(new String(bs,0,len));//6.打印0到len个字符(bs范围内len可变)bs是空间容器//注意:当len执行完一次时会自动向下指向-1之后就是结束符System.out.println(len);System.out.println(bo.read(bs));System.out.println((len = bo.read(bs)) );}foStream.close();//7.关闭字节流bo.close();//8.关闭高效流}
}
2.缓存字符流
BufferedWriter
BufferedReader
构造方法
参数:writer(父类) 
可传
FileWriter OutputStreamWriter BufferedReader
特有方法:
newLine() 无关平台   Mac \n Windows/n
1.缓存流写入
public class Test {public static void main(String[] args) throws IOException {FileWriter fw = new FileWriter("/Users/lanou/Desktop/test/ppp.txt");//1.创建字符写入流BufferedWriter bw = new BufferedWriter(fw);//2.创建字符缓存流bw传入创建的字符写入流fwbw.write("床前明月光");//3.写入内容bw.newLine();//4.空格bw.flush();//5.刷新内容bw.write("疑是地上霜");//3.写入内容bw.newLine();//4.空格bw.flush();//5.刷新内容bw.close();//6.关闭缓存流fw.close();//7.关闭写入流}
}
2.缓存流读取文件内容
public class Test {public static void main(String[] args) throws IOException {//1.创建字符读取流FileReader fr = new FileReader("/Users/lanou/Desktop/test/ppp.txt");//2.创建缓存流传入字符读取流BufferedReader bfr = new BufferedReader(fr);String string = "";//3.创建初始化字符while ((string = bfr.readLine()) != null) {//4.缓存流读取文件当读取为空时结束读取,一次读一行//注意:读取完一次指针自动指向下一行System.out.println(string);//5.打印读取内容System.out.println("*");
}bfr.close();//关闭缓存读取流fr.close();//关闭读取流}
}结论:按行读取 是不能把换行读取的
3.缓存流复制文件
public class Test {public static void main(String[] args) throws IOException {//读 //1.创建文件写入流FileReader fr = new FileReader("/Users/lanou/Desktop/test/ppp.txt");BufferedReader bfr = new BufferedReader(fr);//2.创建读取缓存流传入传入读取流fr//写//1.创建文件写入流FileWriter fw = new  FileWriter("/Users/lanou/Desktop/test/ppp01.txt");BufferedWriter bfw = new BufferedWriter(fw);//2.创建写入缓存流传入文件写入流fwString string = "";//3.初始化读取内容while ((string = bfr.readLine()) != null) {//4.指针指向目标内容的每行,按行读取bfr内容System.out.println(string);//打印要读取的内容bfw.write(string);//5.向目标文件写入读取的内容bfw.newLine();//6.指针指向下一行后换行bfw.flush();//7.刷新内容}bfw.close();//关闭写入缓存流bfr.close();//关闭读取缓存流}
}
总结:
1.明确要操作的是数据源和 数据目的地
读数据源InputStream Reader写到数据目的地 OutPutStream Writer2.明确要操作的是什么内容文本音频图片等等...使用字节流(全能流)文本字符流文本(按编码格式读写)使用字符流3.明确流要在什么设备上使用文本网络  通过流进行数据交换 --- 字节流4.是否需要提高效率buffered 缓存流

2.Properties集合

2.1Properties集合的功能测试
public class Test {public static void main(String[] args) throws IOException {Properties properties = new Properties();//1.创建集合properties.put("name", "等等");//2.写入内容properties.put("name", "哈哈");properties.put("哈哈", "哈哈");System.out.println(properties);//4.打印内容Set<String> set = properties.stringPropertyNames();//5.将键值传入set集合for (String string : set) {//6.遍历properties键值String value = properties.getProperty(string);//7.获取值value内容System.out.println(string + "***" +  value);//8.打印}}
}
结论:
1.Properties集合能去重
2.Properties集合值value存在于键值key中
3.Properties集合(双列)父类Hashtable
4.该集合key和value最好使用字符串
5.properties是集合中唯一一个能 IO 流配合的类
2.1用Properties储存目标文件内容
public class Test {public static void main(String[] args) throws IOException {Properties properties  =  new Properties();//1.创建集合//2.创建字符读取流读取znb.peoperties文件,没有就创建一个FileReader fr = new FileReader("/Users/lanou/Desktop/test/znb.properties");
//     2.1向目标文件写入内容properties.load(fr);//3.向集合中传入znb.properties的内容System.out.println(properties);//4.打印集合结果内容fr.close();//关闭读取流}
}
2.2用Properties向目标文件写入内容
public class Test {public static void main(String[] args) throws IOException {Properties properties  =  new Properties();//1.创建集合properties.setProperty("姓名", "狗蛋");//2.向集合写入内容properties.setProperty("年龄", "59");properties.setProperty("英文名", "狗蛋");//3.创建文件写入流fwFileWriter fw = new FileWriter("/Users/lanou/Desktop/test/znb.properties");properties.store(fw, "wan");//4.向文件写入集合内容,参数二为文件注释可不写fw.close();//5.关闭写入流}
}
注释:
1.创建文件时后缀可以随便取名但为了好辨识类型,一般写明确相关后缀
2.在Properties文件中 可以使用#来注释
3.作用:properties是集合中唯一一个能 IO 流配合的类

这篇关于Java缓存流(高效率的流)与Properties集合的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/943147

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

在cscode中通过maven创建java项目

在cscode中创建java项目 可以通过博客完成maven的导入 建立maven项目 使用快捷键 Ctrl + Shift + P 建立一个 Maven 项目 1 Ctrl + Shift + P 打开输入框2 输入 "> java create"3 选择 maven4 选择 No Archetype5 输入 域名6 输入项目名称7 建立一个文件目录存放项目,文件名一般为项目名8 确定