4

我有一个 csv 文件(details.csv)

ID,NAME,ADDRESS
1,"{foo,bar}","{123,mainst,ny}"
2,"{abc,def}","{124,mainst,Va}"
3,"{pqr,xyz}","{125,mainst,IL}"

当我使用时(注意:我上面还有其他闭包,它从目录中读取所有 csv 文件)

if(file.getName().equalsIgnoreCase("deatails.csv")) {
 input = new FileInputStream(file)
 reader = new BufferedReader(new InputStreamReader(input))
 reader.eachLine{line-> def cols = line.split(",")
 println cols.size() }

而不是得到大小 3 我得到 6 值

1
"{foo
bar}"
"{123
mainst
ny}"

spilt(",") 用逗号(,) 分割数据,但我希望我的结果为

1
"{foo,bar}"
"{123,mainst,ny}"

我该如何解决这个关闭问题。请帮忙!谢谢

4

2 回答 2

21

编写 csv 解析器是一项棘手的工作。

我会让其他人做艰苦的工作,并使用像 GroovyCsv 这样的东西


这是使用 GroovyCsv 解析它的方法

// I'm using Grab instead of just adding the jar and its
// dependencies to the classpath
@Grab( 'com.xlson.groovycsv:groovycsv:1.0' )
import com.xlson.groovycsv.CsvParser

def csv = '''ID,NAME,ADDRESS
1,"{foo,bar}","{123,mainst,ny}"
2,"{abc,def}","{124,mainst,Va}"
3,"{pqr,xyz}","{125,mainst,IL}"'''

def csva = CsvParser.parseCsv( csv )
csva.each {
  println it
}

哪个打印:

ID: 1, NAME: {foo,bar}, ADDRESS: {123,mainst,ny}
ID: 2, NAME: {abc,def}, ADDRESS: {124,mainst,Va}
ID: 3, NAME: {pqr,xyz}, ADDRESS: {125,mainst,IL}

因此,要获取第二行的 NAME 字段,您可以执行以下操作:

def csvb = CsvParser.parseCsv( csv )
println csvb[ 1 ].NAME

哪个打印

{abc,def}

当然,如果 CSV 是一个文件,你可以这样做:

def csvc = new File( 'path/to/csv' ).withReader {
  CsvParser.parseCsv( it )
}

然后像上面那样使用

于 2012-08-16T20:53:45.847 回答
0

有两种做法。一种是使用收集

def processCsvData(Map csvDataMap, File file)
{

    InputStream inputFile = new FileInputStream(file);
    String[] lines = inputFile.text.split('\n')
    List<String[]> rows = lines.collect {it.split(',')}
          // Add processing logic
}

这里的问题是它正在删除大括号({})之间的逗号,即“{foo,bar}”变成“{foo bar}”另一种使用java的方式,这很好用

public class CSVParser { 

    /* 
     * This Pattern will match on either quoted text or text between commas, including 
     * whitespace, and accounting for beginning and end of line. 
     */ 
    private final Pattern csvPattern = Pattern.compile("\"([^\"]*)\"|(?<=,|^)([^,]*)(?:,|$)");   
    private ArrayList<String> allMatches = null;         
    private Matcher matcher = null; 
    private int size; 

    public CSVParser() {                 
        allMatches = new ArrayList<String>(); 
        matcher = null; 
    } 

    public String[] parse(String csvLine) { 
        matcher = csvPattern.matcher(csvLine); 
        allMatches.clear(); 
        String match; 
        while (matcher.find()) { 
                match = matcher.group(1); 
                if (match!=null) { 
                        allMatches.add(match); 
                } 
                else { 
                        allMatches.add(matcher.group(2)); 
                } 
        } 

        size = allMatches.size();                
        if (size > 0) { 
                return allMatches.toArray(new String[size]); 
        } 
        else { 
                return new String[0]; 
        }                        
    }    

}

希望这可以帮助!

于 2012-08-17T14:44:18.973 回答