本文主要是介绍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集合的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!