Apache Commons lang StrTokenizer
由于我需要空标记来读取空字符串或 null,因此我决定使用 apache commons lang StrTokenizer
但我仍然无法得到空字符串。我知道我需要在标记化之前设置 setEmptyTokenAsNull
方法。但我怎样才能做到这一点呢?请帮忙。
tok = new StrTokenizer(line,",");
tok.setEmptyTokenAsNull(true);
Since I need empty tokens to read either as empty string or null, I decided to use the apache commons lang StrTokenizer
But I am still not able to get the empty string. I know I need to set the setEmptyTokenAsNull
method before I tokenize. But how can I do that? Please help.
tok = new StrTokenizer(line,",");
tok.setEmptyTokenAsNull(true);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
知道了!!使用
tok.setIgnoreEmptyTokens(false);
代替!Got it!! Used
tok.setIgnoreEmptyTokens(false);
instead!!