IO流(1)

File 能新建、删除、重命名文件和目录,但 File 不能访问文件内容本身。如果需要访问文件内容本身,则需要使用输入/输出流。
File对象可以作为参数传递给流的构造函数

File类的常见构造方法

public File(String pathname)

以parent为父路径,child为子路径创建File对象。

public File(String parent,String child)

IO 流体系

在这里插入图片描述
文件字节输入流

pubiic static void main (String[] args){
	try {
		FileInputStream in = new FileInputStream ("...");//绝对路径
		byte[] b = new byte [1024];
		int len = 0;
		while ( (len = in.read(b))!=-1) {
			system.out.println (new String(b,0,len));//从零开始,输到长度结束
		in.close();
	}catch (Exception e){
		e.printStackTrace();
	}
}

文件字节输出流

public static void main (String[] args){
	try {
	FileOutputStream out = new FileOutputStream("...");
	String str = "..." ;//文件内容
	out.write(str.getBytes());
	out.flush();
	out.close();//使用完要关闭流
}catch (Exception e){
	e.printStackTrace();
	}
}

文件字符输入流
读取文件操作步骤:
1.建立一个流对象,将已存在的一个文件加载进流。
FileReader fr = new FileReader(“Test.txt”);
2.创建一个临时存放数据的数组。
char[] ch = new char[1024];
3.调用流对象的读取方法将流中的数据读入到数组中。
fr.read(ch);

文件字符输出流
写入文件步骤
1.创建流对象,建立数据存放文件
FileWriter fw = new FileWriter(“Test.txt”);
2.调用流对象的写入方法,将数据写入流
fw.write(“text”);
2.1 输出流关闭之前需要清空缓存
fw.flush();
3.关闭流资源,并将流中的数据清空到文件中
fw.close();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值