Java怎么实现带缓冲的输入输出流
发表于:2025-01-22 作者:千家信息网编辑
千家信息网最后更新 2025年01月22日,本篇内容主要讲解"Java怎么实现带缓冲的输入输出流",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"Java怎么实现带缓冲的输入输出流"吧!缓冲是 I/O
千家信息网最后更新 2025年01月22日Java怎么实现带缓冲的输入输出流
本篇内容主要讲解"Java怎么实现带缓冲的输入输出流",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"Java怎么实现带缓冲的输入输出流"吧!
缓冲是 I/O 的一种性能优化。缓冲流为 I/O 流增加了内存缓冲区。
BufferedInputStream类 与 BufferedOutputStream类
BufferedInputStream类 可以对所有InputStream的子类进行缓冲区的包装,以达到性能的优化。
BufferedOutputStream类 中的 flush()方法 被用来把缓冲区的字节写入到文件中,并清空缓存。
BufferedInputStream类的构造方法:
构造方法 | 介绍 |
---|---|
BufferedInputStream(FileInputStream fileInputStream); | 创建一个带有32个字节的缓冲输入流。 |
BufferedInputStream(FileInputStream fileInputStream , int size); | 按指定的大小来创建缓冲输入流。 |
BufferedOutputStream类的构造方法:
构造方法 | 介绍 |
---|---|
BufferedOutputStream(FileOutputStream fileOutputStream); | 创建一个带有32个字节的缓冲输出流。 |
BufferedOutputStream(FileOutputStream fileOutputStream , int size); | 按指定的大小来创建缓冲输出流。 |
BufferedInputStream类 与 BufferedOutputStream类 实例:
import java.io.*; public class Demo4 { public static void main(String[] args) { /** * 缓冲字节输入流(BufferedInputStream) * 特点:提高效率 */ File file = new File("C:\\JAVA_API_1.7中文.chm"); BufferedInputStream bufferedInputStream = null;//创建缓冲字节流 FileInputStream fileInputStream = null; long stare = System.currentTimeMillis();//获得当前流开始时的毫秒值 try { fileInputStream=new FileInputStream(file); bufferedInputStream = new BufferedInputStream(fileInputStream);//将文件字节流包装成缓冲字节流 byte by[] = new byte[1024];//缓冲区字节数组(这个缓冲区与Buffered不同) while ((bufferedInputStream.read(by))!=-1){//使用缓冲字节流读取数据 } long end = System.currentTimeMillis();//获得当前流结束时的毫秒值 System.out.println("运行经历的毫秒数:"+(end - stare)); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (fileInputStream!=null){ try { fileInputStream.close(); } catch (IOException e) { e.printStackTrace(); } } if (bufferedInputStream!=null){ try { bufferedInputStream.close(); } catch (IOException e) { e.printStackTrace(); } } } /** * 缓冲字节输出流(BufferedOutputStream) * 特点:提高效率 */ File file1 = new File("C:\\Word.txt"); BufferedOutputStream bufferedOutputStream = null;//创建缓冲字节输出流 FileOutputStream fileOutputStream = null; try { fileOutputStream=new FileOutputStream(file1); bufferedOutputStream=new BufferedOutputStream(fileOutputStream);//将文件输出流包装到缓冲字节输出流 String str = "深山踏红叶,耳畔闻鹭鸣。"; byte by[] = str.getBytes(); bufferedOutputStream.write(by); //<*> 使用缓冲字节输出流时,要多进行刷新操作,避免等待,有数据时就将数据写入文件当中 <*> bufferedOutputStream.flush();//刷新(强制将缓冲区数据写入文件中,即使缓冲区没有写满) } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (fileOutputStream!=null){ try { fileOutputStream.close(); } catch (IOException e) { e.printStackTrace(); } } if (bufferedOutputStream!=null){ try { bufferedOutputStream.close(); } catch (IOException e) { e.printStackTrace(); } } } }}
BufferedReader类 与 BufferedWriter类
BufferedReader类 与 BufferedWriter类 分别继承了 Reader类 与 Writer类,这两个类同样具有内部缓冲机制,并以行为单位输入/输出。
BufferedReader类常用方法:
BufferedWriter类常用方法:
BufferedReader类 与 BufferedWriter类 实例:
import java.io.*; public class Demo6 { public static void main(String[] args) { File file = new File("C:\\Word.txt"); /** * 文件缓冲字符输出流(BufferedWriter) */ FileWriter fileWriter = null;//创建文件字符输出流 BufferedWriter bufferedWriter = null;//创建文件缓冲字符输出流 try { fileWriter = new FileWriter(file); bufferedWriter = new BufferedWriter(fileWriter);//将文件字符输出流包装成文件缓冲字符输出流 String str1 = "神里"; String str2 = "绫华"; bufferedWriter.write(str1);//第一行数据 bufferedWriter.newLine();//创建一个新行 bufferedWriter.write(str2);//第二行数据 } catch (IOException e) { e.printStackTrace(); }finally {//<*> 注意:流的关闭顺序,先创建的后关闭。 <*> if (bufferedWriter!=null){ try { bufferedWriter.close(); } catch (IOException e) { e.printStackTrace(); } } if (fileWriter!=null){ try { fileWriter.close(); } catch (IOException e) { e.printStackTrace(); } } } /** * 文件缓冲字符输入流(BufferedReader) */ FileReader fileReader = null; BufferedReader bufferedReader = null; try { fileReader = new FileReader(file); bufferedReader = new BufferedReader(fileReader);//将文件字符输入流包装成文件缓冲字符输入流 String tmp = null;//临时变量 int i = 1;//计数器 while ((tmp = bufferedReader.readLine())!=null){//循环读取文件中的内容 System.out.println("第"+i+"行:"+tmp); i++; } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (bufferedReader!=null){ try { bufferedReader.close(); } catch (IOException e) { e.printStackTrace(); } } if (fileReader!=null){ try { fileReader.close(); } catch (IOException e) { e.printStackTrace(); } } } }}
到此,相信大家对"Java怎么实现带缓冲的输入输出流"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
缓冲
输出
文件
输入
字节
字符
方法
缓冲区
数据
包装
内容
大小
实例
常用
性能
效率
特点
学习
不同
实用
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
分布式数据库怎么开发
网络安全班会活动
网络安全的人做什么
服务器优惠续费
短视频服务器源码
碧蓝航线服务器只有3个
澳大利亚中国网络技术
广东软件开发一般去哪些网站
软件开发企业需要交纳什么税
南京社交软件开发
域名 dns 服务器
下载方舟手游怎么开启服务器
四川信息化少儿编程软件开发
服务器机房安全隐患
中国船舶软件开发工作怎么样
服务器受美国法保护
量子计算 软件开发
软件开发办公笔记本电脑推荐
服务器需要多大并发
贵州农商行软件开发招聘
丹东供暖站自动化控制软件开发
网络安全公司好的有哪些
内蒙古数据库空投箱定制价格
论述数据库技术发展对人类的影响
网络技术选修3总结
中兴手机有推送消息服务器
设计数据库的原则
游戏服务器一般多大内存
服务器管理器怎么改名称
中国网络安全战略的紧迫