我是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
谢谢!