例如停止,給定一個txt文件:的Java:閱讀文件,並在新行上下文
words
123
words:123
words:324
words
123
words:123
words:324
是否有可能做到這一點?
FileReader fr = new FileReader(//the txt file mentioned above);
Scanner s = new Scanner(fr).useDelimiter(//something which equal to the empty string after each venue);
while (s.hasNext()){
String paragraph = s.next();
break;
}
是否有可能只讀到空行?因此款將等於:
words
123
words:123
words:324
只要使用串連接,並在讀取的每行之後加上一個換行符('\ n')。 – Logan