java文件字节流_Java文件流之字节流

public classFileStream {public static voidmain(String[] args) {

FileStream fs= newFileStream();//String content =//fs.readFileWithInputStream("/home/rding/file/File1.txt");//System.out.println(content);

fs.writeFileWithOutputStream("/home/rding/file/File3.txt", "Hello File3");//fs.copyFile("/home/rding/file/File3.txt",//"/home/rding/file/File4.txt");

}public voidcopyFile(String srcPath, String descPath) {

InputStream inStream= null;

OutputStream outStream= null;try{

inStream= newFileInputStream(srcPath);

outStream= newFileOutputStream(descPath);int size =inStream.available();byte[] byteArr = new byte[size];

inStream.read(byteArr);

outStream.write(byteArr);

}catch(FileNotFoundException e) {

e.printStackTrace();

}catch(IOException e) {

e.printStackTrace();

}

}public voidwriteFileWithOutputStream(String filePath, String content) {

OutputStream outStream= null;byte[] byteArr =content.getBytes();try{

//注意,outStream第一次建立后,就不会更新了,必须关闭再重新建立

outStream= newFileOutputStream(filePath);//outStream = new FileOutputStream(new File(filePath));

// 如果传入参数true,则接着原来文件后面继续写,而不是覆盖源文件。//outStream = new FileOutputStream(filePath, true);//outStream = new FileOutputStream(new File(filePath), true);

outStream.write(byteArr);

}catch(FileNotFoundException e) {

e.printStackTrace();

}catch(IOException e) {

e.printStackTrace();

}finally{if (outStream != null) {try{

outStream.close();

}catch(IOException e) {

e.printStackTrace();

}

}

}

}publicString readFileWithInputStream(String filePath) {

InputStream inStream= null;

String result= "";try{

inStream= newFileInputStream(filePath);//inStream = new FileInputStream(new File(filePath));

int size =inStream.available();byte[] byteArr = new byte[size];

inStream.read(byteArr);

result= newString(byteArr);

}catch(FileNotFoundException e) {

e.printStackTrace();

}catch(IOException e) {

e.printStackTrace();

}finally{if (inStream != null) {try{

inStream.close();

}catch(IOException e) {

e.printStackTrace();

}

}

}returnresult;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值