私はコンソールを使ってメッセージを出力するシンプルなソケットチャットを書いています。 I: writing my input here, but
Other_user: hi! here is a message for you.
I: it splits to different lines, which is 1) very inconvenient 2) cannot see which
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter your name: ");
String name = reader.readLine();
私はコンソールの代わりにJavaコードからの入力を提供できますか?
This questionは、プロジェクトで特定のクラスを実行するタスクを実行するときにSystem.inを使用する方法を説明しています。 しかし、私は現在、それが働いていないために:私はapplicationプラグインが含まれているが、次の行build.gradle中: mainClassName = "misc.StreamsExp"
run{
standardInput = Sy
Javaのコマンドラインから文字列のリストを読み込み、その文字列を印刷しようとしています。 は、ここでは、コードです: - public class Example {
public static void main(String args[]) throws Exception {
List<String> list = new ArrayList<String>();