public class Diary {
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
PrintWriter output = null;
try {
output = new PrintWriter (new FileOutputStream("diaryLog"));
} catch (FileNotFoundException e) {
System.out.println("File not found");
System.exit(0);
}
//Ok, I will ask the date for you here:
System.out.println("Enter the date as three integers separated by spaces (i.e mm dd yyyy):");
int month = input.nextInt();
int day = input.nextInt();
int year = input.nextInt();
//And print it in the file
output.println("Date: " + month +"/" + day + "/" + year);
System.out.println("Begin your entry:");
String entry= input.next();
while("end".equals(entry))
{
output.print(entry + " ");
}
output.close();
System.out.println("End of program.");
}
}
该程序的目标是获取输入并创建日记条目,并在输入单词end时将输入输出到文件。当我编译程序时,我输入结束时没有终止,我的日记条目没有保存在输出文件中。
答案 0 :(得分:1)
如果entry
的值为end
,则代码会继续循环。但是你想要反过来,所以使用!
运算符。此外,您没有在循环中为entry
重新分配新值,因此如果条目的第一个值本身为end
,则会导致无限循环。
您需要将值重新分配给entry
:
String entry;
while(!"end".equals(entry = input.next())) {// I had used `!` logical operator
output.print(entry + " ");
}
答案 1 :(得分:0)
在循环的每次迭代中,您希望为用户提供更多输入。因为您要让用户至少输入一次,所以您应该使用do-while
循环,例如......
String entry = null;
do {
entry = input.nextLine();
} while (!"end".equals(entry));
答案 2 :(得分:0)
有几项变化。你应该拥有的是:
String entry= input.next();
output.print(entry + " ");
while(! "end".equals(entry))
{
entry= input.next();
}
output.close();
System.out.println("End of program.");
目的是,虽然用户没有输入'和'继续阅读。
答案 3 :(得分:0)
上面给出的解决方案是正确的,但不要忘记关闭input
。否则在eclipse中,当您尝试打开文本文件时,您将面临堆大小问题。