码迷,mamicode.com
首页 > 其他好文 > 详细

I/O流

时间:2019-07-05 12:59:22      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:文件输入   output   读文件   输出流   data   应用   admin   txt   put   

    1. 文件输出流的应用。
      定义如下字符串:
      String str = “12345abcdef@#%&*软件工程”;
      编写程序将该字符串写入文件”data.txt”。
    2. 文件输入流的应用。
      修改第1题中的程序,读文件”data.txt”,将读到的数据输出在控制台。
    3. 谈一谈本次实训的体会。
      package ccc;
       
      import java.io.*;
       
      public class ccc {
          public static void main(String[] args) throws IOException{<br>         int i=0;  <br>         File file=new File("C:\\Users\\Administrator\\Desktop\\文件接收柜\\data.txt");
         try {
              FileWriter fw=new FileWriter(file,true);
              FileOutputStream out=new FileOutputStream(file);
              String str = "12345abcdef@#%&*软件工程";
               for( i=0;i<str.length()-4;i++){<br>          out.write(str.charAt(i));<br>          }
              for( ;i<str.length();i++)
                fw.write(str.charAt(i));
              out.close();
              fw.close();
              }catch(Exception e){
                e.printStackTrace();
              }
          try{
              FileInputStream in=new FileInputStream(file);
              byte[] buf=new byte[(int)(file.length())];
              in.read(buf);
              String str=new String(buf);
              System.out.println(str);
              in.close();
          }catch(FileNotFoundException fn){
              System.out.println("文件打开失败!");
          }catch(IOException ioe){
              ioe.printStackTrace();
          }
          }
      }
      

        此次实训还有待提升,还没完全掌握知识点。

I/O流

标签:文件输入   output   读文件   输出流   data   应用   admin   txt   put   

原文地址:https://www.cnblogs.com/angst18/p/11137534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!