JAVA.io读写文件方式汇总
作者:小不点丶 时间:2022-10-14 06:32:21
一、Java把这些不同来源和目标的数据都统一抽象为数据流。
Java语言的输入输出功能是十分强大而灵活的。
在Java类库中,IO部分的内容是很庞大的,因为它涉及的领域很广泛:标准输入输出,文件的操作,网络上的数据流,字符串流,对象流,zip文件流。
这里介绍几种读写文件的方式
二、InputStream、OutputStream(字节流)
//读取文件(字节流)
InputStream in = new FileInputStream("d:\\1.txt");
//写入相应的文件
OutputStream out = new FileOutputStream("d:\\2.txt");
//读取数据
//一次性取多少字节
byte[] bytes = new byte[2048];
//接受读取的内容(n就代表的相关数据,只不过是数字的形式)
int n = -1;
//循环取出数据
while ((n = in.read(bytes,0,bytes.length)) != -1) {
//转换成字符串
String str = new String(bytes,0,n,"GBK"); #这里可以实现字节到字符串的转换,比较实用
System.out.println(str);
//写入相关文件
out.write(bytes, 0, n);
}
//关闭流
in.close();
out.close();
三、BufferedInputStream、BufferedOutputStream(缓存字节流)使用方式和字节流差不多,但是效率更高(推荐使用)
//读取文件(缓存字节流)
BufferedInputStream in = new BufferedInputStream(new FileInputStream("d:\\1.txt"));
//写入相应的文件
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream("d:\\2.txt"));
//读取数据
//一次性取多少字节
byte[] bytes = new byte[2048];
//接受读取的内容(n就代表的相关数据,只不过是数字的形式)
int n = -1;
//循环取出数据
while ((n = in.read(bytes,0,bytes.length)) != -1) {
//转换成字符串
String str = new String(bytes,0,n,"GBK");
System.out.println(str);
//写入相关文件
out.write(bytes, 0, n);
}
//清楚缓存
out.flush();
//关闭流
in.close();
out.close();
四、InputStreamReader、OutputStreamWriter(字节流,这种方式不建议使用,不能直接字节长度读写)。使用范围用做字符转换
//读取文件(字节流)
InputStreamReader in = new InputStreamReader(new FileInputStream("d:\\1.txt"),"GBK");
//写入相应的文件
OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream("d:\\2.txt"));
//读取数据
//循环取出数据
byte[] bytes = new byte[1024];
int len = -1;
while ((len = in.read()) != -1) {
System.out.println(len);
//写入相关文件
out.write(len);
}
//清楚缓存
out.flush();
//关闭流
in.close();
out.close();
五、BufferedReader、BufferedWriter(缓存流,提供readLine方法读取一行文本)
//读取文件(字符流)
BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream("d:\\1.txt"),"GBK"));#这里主要是涉及中文
//BufferedReader in = new BufferedReader(new FileReader("d:\\1.txt")));
//写入相应的文件
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("d:\\2.txt"),"GBK"));
//BufferedWriter out = new BufferedWriter(new FileWriter("d:\\2.txt"));
//读取数据
//循环取出数据
String str = null;
while ((str = in.readLine()) != null) {
System.out.println(str);
//写入相关文件
out.write(str);
out.newLine();
}
//清楚缓存
out.flush();
//关闭流
in.close();
out.close();
六、Reader、PrintWriter(PrintWriter这个很好用,在写数据的同事可以格式化)
//读取文件(字节流)
Reader in = new InputStreamReader(new FileInputStream("d:\\1.txt"),"GBK");
//写入相应的文件
PrintWriter out = new PrintWriter(new FileWriter("d:\\2.txt"));
//读取数据
//循环取出数据
byte[] bytes = new byte[1024];
int len = -1;
while ((len = in.read()) != -1) {
System.out.println(len);
//写入相关文件
out.write(len);
}
//清楚缓存
out.flush();
//关闭流
in.close();
out.close();
七、基本的几种用法就这么多,当然每一个读写的使用都是可以分开的。为了更好的来使用io。流里面的读写,建议使用BufferedInputStream、BufferedOutputStream
来源:https://www.cnblogs.com/ll409546297/p/7197911.html
标签:JAVA,io,读写文件
0
投稿
猜你喜欢
Android开发使用RecyclerView添加点击事件实例详解
2022-04-30 14:11:55
浅谈Java三大框架与应用
2023-04-16 18:25:01
C#实现简单点餐系统
2021-06-27 22:00:56
Java输出链表倒数第k个节点
2023-03-22 01:22:34
eclipse maven 插件的安装和配置详解
2023-08-24 16:57:01
源码解析JDK 1.8 中的 Map.merge()
2023-11-16 23:49:25
C#文件流读写和进度回调示例详解
2022-08-12 14:52:31
探讨:将两个链表非降序合并为一个链表并依然有序的实现方法
2023-06-23 01:41:38
浅谈Java基础知识之BigDecimal
2021-09-06 16:49:27
android实现状态栏添加图标的函数实例
2022-11-19 06:57:42
C#中在WebClient中使用post发送数据实现方法
2023-05-01 00:03:54
@Autowired注解注入的xxxMapper报错问题及解决
2022-10-01 10:31:02
使用Java实现简单串口通信
2022-07-27 14:48:52
java 中遍历取值异常(Hashtable Enumerator)解决办法
2023-08-06 05:17:08
Javaweb获取表单数据的多种方式
2022-12-25 18:13:41
Java文件操作之IO流 File类的使用详解
2023-07-26 00:49:41
java中方法递归的简单示例
2022-11-25 11:45:12
c#的params参数使用示例
2021-10-07 04:53:39
Android给TextView添加点击事件的实现方法
2023-08-08 13:59:49
如何修改FeginCilent定义的服务名到指定服务
2022-07-05 05:49:05