目次> 第14章> 14.5 | TOPUPPREVNEXT |
14.3 例(2) のような、 コンマをデリミタとした result.txt ファイルを作成する場合には、 次のようなプログラムの構造になります。
【J2SE 1.4 の場合】
String name, address, phone; try { PrintWriter out = new PrintWriter( new FileWriter( "result.txt") ); for(int i=0; i< ... ; i++) { ... name address phone の準備 ... out.println( name + "," + address + "," + phone ); } out.close(); } catch(IOException e) { e.printStackTrace(); }println で書き出された行の最後に改行文字が追加されます。
14.3 例(1) のファイルを作成するプログラム例 CsvDemo4.java
実行結果
【J2SE 5.0 の場合】
String name, address, phone; try { PrintWriter out = new PrintWriter( "result.txt" ); for(int i=0; i< ... ; i++) { ... name address phone の準備 ... out.println( name + "," + address + "," + phone ); } out.close(); } catch(IOException e) { e.printStackTrace(); }
プログラム例 CsvDemo4T.java
実行結果
更新日:2006-03-10 | TOPUPPREVNEXT |