我正在为uni编写一个实验室任务的程序,代码将使得相当明显的是什么,但是当它要求第一行时,即循环中的第一个1,并且插入一个字符串,点击回车,它会自动直接跳到循环中的最后一个增量(5)任何想法?
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.PrintWriter;
import java.util.Scanner;
public class limmerickWriter {
public static void main(String[] args)throws Exception {
Scanner limScan = new Scanner(System.in); //scanner to read user input
System.out.println("please enter the name of the file");
String fileName;
fileName = limScan.next(); //filename for the text file
PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(fileName))); //declaring a new file writer
for (int i = 1; i <= 5; i++) //loop to get 5 seperate lines from the user
{
System.out.println("please enter line " + i );
out.println(limScan.next()); //writes the contents of the scanner to the file
}
out.flush();
out.close();
}
}
答案 0 :(得分:6)
使用scanner.next()
空格进行阅读时,将其用作默认分隔符。这意味着如果插入的文件名中包含多个以空格分隔的单词,则会先通过连续next()
调用来读取它们。
例如,在使用filename
阅读scanner.next()
时,如果您插入:
test ATest BTest CTest DTest ETest
点击Enter
,您会看到在相关的类路径中创建了一个名为test
的文件,其中包含文字数据ATest BTest CTest DTest ETest
。
尝试在for循环中使用nextLine()
。