不好意思,我是Java初學者,自修的過程中遇到書上一個題目,
要寫出一個程式,讓使用者輸入字串,然後將字串寫入txt文字檔。
另外,再寫一個搜尋的功能,找出此txt檔中,特定字串的出現次數。
我目前還卡在第一階段,讓使用者輸入字串並寫入文字檔。
以下是我目前寫的,但似乎運行結果無法創建文字檔,
然後使用者輸入的loop也無法像我想要的,輸入"STOP"就跳出。
想請問各位大大,我的問題出在哪裡? 感謝! <(_ _)>
import java.io.*;
import java.util.ArrayList;
import java.util.Scanner;
public class TextSearch {
public static void main(String[] args) throws IOException {
//Create new file named "myText"
File myFile = new File("myText.txt");
String EndingInputKW = "STOP";
System.out.println("Input String, or enter STOP to complete
inputting: ");
//Input strings until enter "STOP"
ArrayList<String> stringInputArrayList = new ArrayList<String>();
Scanner scanner = new Scanner(System.in);
while (!scanner.nextLine().equals(EndingInputKW)) {
stringInputArrayList.add(scanner.nextLine());
}
//Write Strings into "myText" File
BufferedWriter bufferedWriter = new BufferedWriter(new
FileWriter(myFile));
for (int i = 0; i < stringInputArrayList.size(); i++) {
bufferedWriter.write(stringInputArrayList.get(i));
}
}
}