Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はJavaを初めて使用します...コンソールアプリケーションが閉じないようにするためのC#のReadKey()と同様のメソッドはありますか?
ありがとう
System.in.read()終了キーが「Enter」キーだけで問題ない場合は、を使用することもできます。
System.in.read()
それを行う1つの方法:
BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); br.readLine();
確かに短いものもありますが、簡単に伸ばせるので便利だと思います。