首页 > 代码库 > java FileStream文件流操作
java FileStream文件流操作
直接上代码,函数使用说明详见Java API文档
import java.io.*;
public class StreamDemo
{
public static void main(String[] args)
{
File f=new File("F:\\workspace\\JavaPrj\\test.txt");
FileOutputStream out=null;
try
{
out=new FileOutputStream(f);
byte[] b=new String("Hello,my name is cjc").getBytes();
System.out.println("\"Hello,my name is cjc\"has been writeen into "+f.getName()+".");
out.write(b);
out.close();
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
try
{
FileInputStream in=new FileInputStream(f);
byte b[]=new byte[1024];
int cnt=0;
cnt=in.read(b);
//注意这里byte转化成String的方法
System.out.println("\""+new String(b,0,cnt)+"\"has been read from "+f.getName()+".");
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。