-3
我希望用戶在創建多個(2)使用字符串的文件命名文件Java中使用字符串加另一個字母
例:在「阿爾法」的用戶類型和程序將創建一個文件稱爲「alphaa」,另一個稱爲「alphaq」。 我有這個現在
b = keb.nextLine(); //b is the user input
try{
FileWriter fw = new FileWriter (b, true);
BufferedWriter bw = new BufferedWriter (fw);
PrintWriter out = new PrintWriter(bw){
out.print("stuff);
out.print("other stuff");
out.print("somthing);
}catch (IOException e){}
我怎麼能這樣做?
你有試過什麼嗎? –
如果你能證明你自己試圖做這件事,或者你尋求幫助的地方,那將是很棒的事,因爲互聯網上的隨機陌生人不可能想要幫助那些不會幫助自己的人。 – Dangercrow