1

我是java新手!我使用此代码将数据写入 .txt 文件:

try { 
String content = "This is the content to write into file";
File file = new File("/users/mkyong/filename.txt");

// if file doesnt exists, then create it

if ( !file.exists() ) {
    file.createNewFile();
}
FileWriter fw = new FileWriter( file.getAbsoluteFile() );
BufferedWriter bw = new BufferedWriter( fw );
bw.write( content );
    bw.NewLine();
bw.close();
System.out.println("Done");
} catch (IOException e) {
e.printStackTrace();
}

名字 姓氏 注册号码

最大限度

1238

我想将每个数据存储在其名称下方:

我想要这样:

FName LName Reg_Num

乔最大 1238

谢谢!

4

2 回答 2

2

该代码应将“这是要写入文件的内容”输出到文本文件中。这些名字是从哪里来的?

有关 Java 中的制表,请参阅此主题

于 2012-12-20T15:14:31.027 回答
1

您可以使用\t在字段之间添加选项卡。示例代码可能类似于:

    try {
        String firstName = "Joe";
        String lastName = "Doe";
        String regNum = "123";

        File file = new File("/home/parvin/Desktop/filename.txt");

        if (!file.exists()) {
            file.createNewFile();
        }

        FileWriter fw = new FileWriter(file.getAbsoluteFile());
        BufferedWriter bw = new BufferedWriter(fw);
        bw.write("FirstName\t LastName\t RegNum\t \n");
        bw.write(firstName + "\t" + lastName + "\t" + regNum + "\t" + "\n");
        bw.newLine();
        bw.close();

        System.out.println("Done");

    } catch (IOException e) {
        e.printStackTrace();
    }
于 2012-12-20T15:17:31.197 回答