我怎样才能为 java 的 UVA 在线问题输入字符串?需要详细资料

How can I take string input for UVA online problem for java only ? Detail information needed

我正在尝试使用 JAVA.

为 UVA 在线判断问题输入字符串

喜欢 C++

while(s = getchar()) {
   if(s == EOF)
}
import java.util.Scanner;

Scanner scanner = new Scanner(System.in);
System.out.println("Enter a string.");
String str = scanner.nextLine();

这是您要找的吗?如果您正在从文件中读取,

import java.io.File;

Scanner scanner = new Scanner(new File("path.txt"));
while (scanner.hasNextLine()) {
    String str = scanner.nextLine();
    //...
}

我已经使用以下方法解决了这个问题

Scanner stdin = new Scanner(System.in);

while (stdin.hasNextLine()) 
{
  String line = stdin.nextLine();
  // Further Opera
}