编写一个Java程序,将用户在命令行窗口键盘输入的内容写到一个新建的txt文件中

我在考试 速度求解答
2024-11-06 12:11:17
推荐回答(3个)
回答(1):

public static void main(String[] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String filepath = "D:\\test.txt";
BufferedWriter bw = null;
try {
bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(filepath)));
String lin = "";
while (!(lin = br.readLine()).equals("exit")) {
bw.write(lin);
bw.newLine();
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if(bw != null){
bw.flush();
bw.close();
}
if(br != null)
br.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}

回答(2):

scanner scan = new scanner(system.in);
String str = scan.readLine();
File file = new File ("c:/aa.text");
FileInputStream 数据流写入

回答(3):