FileOutputStream和FileInputStream的用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FileOutputStream和FileInputStream的用法相关的知识,希望对你有一定的参考价值。
public static void show()
{
File f=new File("d:"+File.separator+"1.txt");
FileOutputStream fo=new FileOutputStream(f,ture);
String str="你好";
fo.erite(str.getBytes());
fo.close();
FileInputStream fi=new FileInputstream(f);
byte [] buffer=new byte[1024];
int len=fi.read(buffer);
System.out.println(new String(buffer,0,len));
fi.close();
}
以上是关于FileOutputStream和FileInputStream的用法的主要内容,如果未能解决你的问题,请参考以下文章
new FileOutputStream和openFileOutput区别
java中DataOutputStream和FileOutputStream中,只关闭FileOutputStream,不关闭Data
字节流:FileInputStream和FileOutputStream的使用
FileOutputStream和FileInputStream的用法