编程语言
首页 > 编程语言> > JAVA-IO

JAVA-IO

作者:互联网

流相关的知识:
1.流是顺序读写方式,不能任意读写指定位置的数据;
2.输入/输出流:在编写代码时候,输入输出是以程序为方向,读取文件--输入流,写出文件---输出流
3.流的使用:
文件流:
* 输入流FileInputStream

点击查看代码
FileInputStream fis = new FileInputStream("fos.text");
		//读取多少 
		byte[] data = new byte[fis.available()];
		int len = fis.read(data);
		System.out.println("实际读取字节"+len);
		//String string = new String(data);//会乱码
		String string = new String(data,0,len,"utf-8");

		System.out.println(string)

输出流FileOutputStream

点击查看代码
FileOutputStream fos = new FileOutputStream("fos.text");
	String line = "welcome";
	//转成字节数组  二进制
	byte[] data = line.getBytes("UTF-8");
	fos.write(data);
	System.out.println("写出完毕");
	fos.close();
流有两种模式:FileOutputStream(...,boolean append) 一种是替换 new FileOutputStream("fos.text",false),false相当于不写; 另外一种是追加,new FileOutputStream("fos.text",true);

标签:JAVA,String,fos,text,FileOutputStream,IO,new,data
来源: https://www.cnblogs.com/yuxuan1997love/p/16475828.html