タイトル: InputStream
InputStreamとは
InputStreamは読み込み用のクラスです。
通常、BufferedInputStreamを使用してバッファに一度ため込むことによってパフォーマンスを改善する。
使用例
CSVファイルの読み込み例です。
@RequestMapping(value = "/post", method = RequestMethod.POST) InputStream inputStream = null; try { while ((line = bufferReader.readLine()) != null) { byte[] b = line.getBytes(); for (int i = 0; i < columns.length; i++) { ... } |