码迷,mamicode.com
首页 > 编程语言 > 详细

java基础之I/O操作

时间:2019-11-12 23:09:50      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:buffer   基础   rgs   txt   import   exce   bsp   color   temp   

直接上代码:

import java.io.*;

class Test{
    public static void main(String[] args){
        FileInputStream inputfile = null;
        FileOutputStream outputfile = null;
        try{
            inputfile = new FileInputStream("./input.txt");
            outputfile = new FileOutputStream("./output.txt");
            byte[] buffer = new byte[100];
            int temp = inputfile.read(buffer,0,buffer.length);
            String s = new String(buffer);
            s = s.trim();
            System.out.println(s);
            outputfile.write(buffer,0,temp);
            
        }
        catch(Exception e){
            System.out.println(e);
        }
        
    }
}

 

java基础之I/O操作

标签:buffer   基础   rgs   txt   import   exce   bsp   color   temp   

原文地址:https://www.cnblogs.com/endust/p/11846040.html

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