System.out.println("What's your name");
name = input.nextLine(); //input was initialized as: new Scanner(System.in)
这意味着,该用户被问及某些事情,然后我们等待响应,并在提供答案时发生更多事情(例如将名称发送到服务器)。
为了提供这样的功能,我写了类:
public class Printer {
public static void print(String str) {
if (Player.isGUIModeOn()) {
}
else {
ConsolePrinter.println(str);
}
}
public static String prompt(String str) {
String out = "";
if (Player.isGUIModeOn()) {
}
else {
out = ConsolePrinter.prompt(str);
}
return out;
}
}
但我并不知道如何实现这个与提示用户提供一些数据相关的部分,包括如何异步更改部分显示的网站(打印)以及等待它(站点)响应。 我的问题是我应该使用和/或阅读哪些技术来实现这些功能。我们随时欢迎使用示例和代码。
我必须使用Play!框架v2