java基础—java的Io操作学习(2)[通俗易懂]

学习java的Io操作(2)

大家好,又见面了,我是全栈君。

学习java的Io操作(2),往文件中写入内容,读取文件中的内容!

package com.dufy.io;

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.Writer;

/**
 * 
 * 练习IO操作 second <br/>
 * 代码是写出来的,不是看出来的,我是阿飞-aflyun <br/>
 * 在路上! 
 * @author aflyun
 * @email 742981086@qq.com
 *
 */
public class TestSecondIo {
	
	public static void main(String[] args) throws IOException {
		writeByteFile();//字节流写文件
		readByteFile();//字节流读文件
		changeReadByteFile();//修改字节流读文件
		
		writeStringFile();//字符流写文件
		readStringFile();//字符流写文件
	}
	/**
	 * 字节流
	 * 1:向文件中写入字符串
	 * 2:向文件中一个字节一个字节的写入字符串
	 * 3:向文件中追加新内容
	 * @throws IOException 
	 */
	public static void writeByteFile() throws IOException{
		String path = "E:"+ File.separator +"aflyun.txt";
		File file = new File(path);
		OutputStream os = new FileOutputStream(file);
		String str = "Hello World!";
		byte[] b = str.getBytes();
		//1:向文件中写入字符串
		os.write(b);
		//2:向文件中一个字节一个字节的写入字符串
		for (int i = 0; i < b.length; i++) {
			os.write(b[i]);
		}
		//3:向文件中追加新内容
		String appendStr = "\nI am aflyun!"; // \n 表示换行
		byte[] b1 = appendStr.getBytes();
		os.write(b1);//输出 Hello World! I am aflyun!
		os.flush();
		os.close();
	}
	/**
	 * 字节流
	 * 1:读取内容
	 * @throws IOException
	 */
	public static void readByteFile() throws IOException{
		String path = "E:"+ File.separator +"aflyun.txt";
		File file = new File(path);
		InputStream is = new FileInputStream(file);
		byte b[] = new byte[1024]; //设置最多存1024个字节
		int len = is.read(b);
		is.close();
		System.out.println(new String(b));
		System.out.println("文件读入长度: " + len);
	}
	/**
	 * 修改上面那种方式
	 * 字节流
	 * 上面那种方式	预先申请了一个指定大小的空间,但是有时候这个空间可能太小,有时候可能太大,我们需要准确的大小,这样子可以更好的利用空间
	 * @throws IOException
	 */
	public static void 	changeReadByteFile() throws IOException{
		String path = "E:"+ File.separator +"aflyun.txt";
		File file = new File(path);
		InputStream is = new FileInputStream(file);
		byte b[] = new byte[(int) file.length()]; //设置读取的该文件的长度,这样子可以很好的设置使用的空间
		//附1:一个字节一个字节的读
		/*for (int i = 0; i < b.length; i++) {
			b[i] = (byte) is.read();
		}*/
		//附2:判断文件是否读完
		int tmp = 0;
		int count = 0;
		while((tmp = is.read())!= -1){
			b[count++] = (byte) tmp;
		}
		is.close();
		System.out.println(new String(b));
		System.out.println(count);
	
	}
	/**
	 * 字符流
	 * 文件写人字符数据
	 * @throws IOException
	 */
	public static void 	writeStringFile() throws IOException{
		String path = "E:"+ File.separator +"aflyunGood.txt";
		File file = new File(path);
		Writer out = new FileWriter(file);
		String str = "你好,依依!";
		out.write(str);
		out.close();
	}
	/**
	 * 字符流
	 * 文件读出
	 * @throws IOException 
	 */
	public static void readStringFile() throws IOException{
		String path = "E:"+ File.separator +"aflyunGood.txt";
		File file = new File(path);
		BufferedReader bf = new BufferedReader(new FileReader(file));
		String str = "";
		while((str = bf.readLine()) != null){ //按行读
			System.out.println(str);
		}
		bf.close();
	}
	
	/**
	 * 总结 字节流和字符流的区别
	 * 	字节流在操作的时候本身是不会用到缓冲区的,是文件本身的直接操作的,但是字符流在操作的 时候下后是会用到缓冲区的,是通过缓冲区来操作文件的。
	 * 	试着将上面的字节流和字符流的程序的最后一行关闭文件的代码注释掉,然后运行程序看看。你就会发现使用字节流的话,文件中已经存在内容,但是使用字符流的时候,文件中还是没有内容的,这个时候就要刷新缓冲区。
	 * 	那到底那个好一些呢?
	 * 	答案是字节流。首先因为硬盘上的所有文件都是以字节的形式进行传输或者保存的,包括图片等内容。但是字符只是在内存中才会形成的,所以在开发中,字节流使用广泛。
	 */
}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/121268.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号