2018-08-23から1日間の記事一覧

キー入力プログラム

昔、Java でキー入力するのに、こんなコードを書いた。。。 public final static String getKeyin(String prompt) throws IOException{ int iCount; String rtn = ""; char cStr[] = new char[256]; InputStream inputStream=System.in; System.out.print(pr…