使用java.io.package /如何从变量中读取数据并将其存储在文件中?

时间:2012-03-07 23:39:37

标签: java java-io

有人可以提供一个提示,告诉我如何从一个变量(一些字符串文件)中读取数据,该变量保存我的随机计算并将输出存储在一个文本文件中,可能还有一些用于处理它的功能。

感谢, steliyan

1 个答案:

答案 0 :(得分:1)

我有2个例子给你;第一个是从文本文件中读取,第二个是写入一个文件。

import java.io.*;
class FileRead {
    public static void main(String args[]) {
        try{
            BufferedReader br = new BufferedReader(new FileReader("textfile.txt"));
            String strLine;
            //Read File Line By Line
            while ((strLine = br.readLine()) != null)   {
               // Print the content on the console
               System.out.println (strLine);
            }
            //Close the input stream
            br.close();
         } catch (Exception e){//Catch exception if any
             System.err.println("Error: " + e.getMessage());
         }
     }
 }


import java.io.*;
class FileWrite {
    public static void main(String args[]) {
        String var = "var";
        try {
            // Create file 
            FileWriter fstream = new FileWriter("out.txt");
            BufferedWriter out = new BufferedWriter(fstream);
            out.write(var);
            //Close the output stream
            out.close();
        } catch (Exception e){//Catch exception if any
            System.err.println("Error: " + e.getMessage());
        }
    }
}