2015-09-01から1ヶ月間の記事一覧

javaでファイル読み込み

import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class Main { public static void main(String[] args) { if (args.length < 1) { System.err.println("Please specify a file name."); System.exit(-1);…