博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文件的读取流和书写流
阅读量:5985 次
发布时间:2019-06-20

本文共 1383 字,大约阅读时间需要 4 分钟。

public void read(){

  InputStream in=null;     

 try {

   //创建文件字节流

   in=new FileInputStream("jpg/1.jpg");

 

 int i=0; 

 //一次读取一个字节,返回对去的数据,如果返回-1表示读取完毕 

  while((i=in.read())!=-1){

     System.out.println(i); 

  }      

  byte[] by=new byte[1024];

   int len=0;  

  //一次读取1024字节,將读取的数据存入字节数组,返回本次读取的字节数,返回-1表示读取完毕   

 while((len=in.read(by))!=-1){

    System.out.println(len);  

  }    

  } catch (Exception e) {

   // TODO Auto-generated catch block    

e.printStackTrace();

  }finally{

   try {   

  in.close();  

  } catch (IOException e) {  

   // TODO Auto-generated catch block    

 e.printStackTrace();  

  }   }  }

 public void writer(){

  OutputStream out=null;  

    try {    

//创建文件写入流,true表示追加写入数据,默认为替换写入  

  out=new FileOutputStream("abc.txt",true);  

  //写入文件    out.write("明天可以睡懒觉".getBytes());  

 } catch (Exception e) {   

 // TODO Auto-generated catch block  

  e.printStackTrace();  

 }finally{    

try {     

out.close();  

  } catch (IOException e) {

    // TODO Auto-generated catch block    

 e.printStackTrace();   

 }   }  }  

 public void copyfile(){  

 InputStream in=null;   

OutputStream out=null;   

  try {

   in=new FileInputStream("d:/西西软件园.txt");

   out=new FileOutputStream("abc.txt");  

      byte[] b=new byte[1024];   

 int a=0;

   while((a=in.read(b))!=-1){   

  out.write(b, 0, a);

   }        

  } catch (Exception e) {

   // TODO Auto-generated catch block

   e.printStackTrace();  

 }finally{  

  try {    

 out.close();

    in.close();   

 } catch (IOException e) {  

   // TODO Auto-generated catch block     e.printStackTrace();   

 }   }  }

转载于:https://www.cnblogs.com/ldl454700988/p/6822330.html

你可能感兴趣的文章
代码重构(五):继承关系重构规则
查看>>
Windows App开发之集合控件与数据绑定
查看>>
中大型网站技术架构演变过程
查看>>
ARTS训练第三周
查看>>
vue中v-for循环如何将变量带入class的属性名中
查看>>
phpstorm xdebug remote配置
查看>>
引用与指针的区别
查看>>
pygtk笔记--2.1:布局容器,VBox、Hbox、Alignment
查看>>
dtree.js树的使用
查看>>
Springboot2.1.3 + redis 实现 cache序列化乱码问题
查看>>
线程什么时候需要同步,什么时候不需要同步?
查看>>
Struts2 自定义拦截器(方法拦截器)
查看>>
SQL中存储过程的创建和使用
查看>>
荷兰政府:保证不强制在任何产品中留有后门
查看>>
编写单元测试的10条理由
查看>>
LINUX-SAMBA服务配置
查看>>
图像处理------光束效果
查看>>
基于ES5`defineProperty` 实现简单的 Mvvm框架
查看>>
关于UI设计的一些工作了解
查看>>
spring cloud构建互联网分布式微服务云平台-Spring Cloud Config环境库
查看>>