java split效率,Java String.split的替代方案,可提高性能

In the process of adding data by import from a csv/tab seperated file, my code consumes a lot of time to upload data. Is there any alternative to do this in a more faster way ?? This is the code i use to split fields in an array.

//Here - lineString = fileReader.readLine()

public static String [] splitAndGetFieldNames(String lineString ,String fileType)

{

if(lineString==null || lineString.trim().equals("")){

return null;

}

System.out.print("LINEEEE " + lineString);

String pattern = "(?=(?:[^\"]*\"[^\"]*\")*(?![^\"]*\"))";

if(fileType.equals("tab"))

pattern = "\t" + pattern;

else

pattern = "," + pattern;

String fieldNames[] = lineString.split(pattern);

for(int i=0 ; i < fieldNames.length ; i++){

//logger.info("Split Fields::"+fieldNames[i]);

if (fieldNames[i].startsWith("\""))

fieldNames[i] = fieldNames[i].substring(1);

if (fieldNames[i].endsWith("\""))

fieldNames[i] = fieldNames[i].substring(0, fieldNames[i].length()-1);

fieldNames[i] = fieldNames[i].replaceAll("\"\"","\"").trim();

//logger.info("Split Fields after manipulation::"+fieldNames[i]);

}

return fieldNames;

}

解决方案

Use a CSV parser like super-csv.

Univocity provides a benchmark of CSV parsers. It says that univocity-parsers is fast, which is no surprise. You could give it a try.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值