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

I/O流

时间:2019-06-20 11:06:26      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:exception   system   out   try   tac   ati   sys   自动生成   imp   

 import java.io.*;

public class FileTest {

    public static void main(String[] args) {
        // TODO 自动生成的方法存根
        File file = new File("data.txt");
        String s = "12345abcdef@#%&*软件工程";
        try {
            FileWriter te = new FileWriter (file);
            BufferedWriter out = new BufferedWriter (te);
            out.write(s);
            out.close();
            te.close();

        } catch (Exception e) {
            e.printStackTrace();
        } 
        try {
            FileReader fr = new FileReader(file);
            BufferedReader in = new BufferedReader(fr);
            String len = in.readLine();
            System.out.println("文件中的信息是:"+ len);
            in.close();
            fr.close();
        }catch (Exception e) {
            e.printStackTrace();
        }
    }

}

I/O流

标签:exception   system   out   try   tac   ati   sys   自动生成   imp   

原文地址:https://www.cnblogs.com/0426abc/p/11057301.html

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