//package jp.tounoo.io;
//
//import java.io.BufferedReader;
//import java.io.FileInputStream;
//import java.io.FileNotFoundException;
//import java.io.IOException;
//import java.io.InputStreamReader;
//import java.io.UnsupportedEncodingException;
//import java.util.StringTokenizer;
//
//import jp.tounoo.data.DataSet;
//
//
//public class StringTokenTest {
//
//
//
// public StringTokenTest(String file , String utf){
//
// try {
// FileInputStream fis = new FileInputStream(file);
// InputStreamReader isr = new InputStreamReader(fis , utf);
// BufferedReader br = new BufferedReader(isr);
// String msg;
// int count = 1;
// while *1 != null){
// System.out.println("---------------");
// System.out.println(count + "行目");
// System.out.println("---------------");
// this.tagCut(msg);
// this.dataSet();
// count = count + 1;
// }
// fis.close();
// isr.close();
// br.close();
// } catch (FileNotFoundException e) {
// e.printStackTrace();
// } catch (UnsupportedEncodingException e) {
// e.printStackTrace();
// } catch (IOException e) {
// e.printStackTrace();
// }
//
//
//
// }
// //一行をタブで区切る
// private void tagCut(String line){
// StringTokenizer st = new StringTokenizer(line);
// while (st.hasMoreTokens()) {
// System.out.println(st.nextToken());
// }
//
// }
// //データをまとめてDataSetへ送る
// private void dataSet(){
// String code;
// String bookName;
// String value;
//
// DataSet ds = new DataSet();
//
//
//
//
// }
//
// public static void main(String[] args) {
// StringTokenTest stt = new StringTokenTest(args[0] , "MS932");
// }
//
//}

*1:msg = br.readLine(