Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ファイル終端コード(0x1A)らしき制御コードを無視する方法はありますか? #36

Open
tacchang001 opened this issue May 13, 2015 · 0 comments

Comments

@tacchang001
Copy link

OrangeSignal CSV、とても助かっています。
ありがとうございます。
さて、早速ですが確認させてください。

ファイル終端コード(0x1A)らしき制御コードをファイルの末尾に含むCSVファイルを取り扱う必要があります。
OrangeSignal CSVでこれを無視する方法はございますか?
末尾に示すようなコードの場合、
java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
となるようです。

FileInputStream fis = new FileInputStream(ファイル名);
InputStreamReader isr = new InputStreamReader(fis,"Shift-JIS");
BufferedReader reader = new BufferedReader(isr);
CsvConfig cfg = new CsvConfig(',', '"', '"');
cfg.setIgnoreEmptyLines(true);
cfg.setIgnoreLinePatterns(Pattern.compile("^#.*$"));

List<POJO名> list = new CsvEntityManager().config(cfg).load(POJO名.class).from(reader);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant