读取csv文件

Posted smileblogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取csv文件相关的知识,希望对你有一定的参考价值。

<!--csv-->
        <dependency>
            <groupId>net.sourceforge.javacsv</groupId>
            <artifactId>javacsv</artifactId>
            <version>2.0</version>
        </dependency>
Map<String, CoordinateDto> map = new HashMap<>();

    @PostConstruct
    private Map <String, CoordinateDto> generatorCoordinate() throws Exception {
        log.info("读取结算单填充坐标点 xy.csv");
        Resource resource = new ClassPathResource("xy.csv");
        InputStream inputStream = resource.getInputStream();
        CsvReader csvReader = new CsvReader(inputStream, Charset.forName("utf-8"));
        csvReader.readHeaders(); //跳过第一行标题行
        while (csvReader.readRecord()) {
            String row = csvReader.getRawRecord(); //读取一整行数据
            String[] arr = row.split(",");
            map.put(arr[0], new CoordinateDto(Integer.parseInt(arr[1]), Integer.parseInt(arr[2])));
        }
        return map;
    }

 

以上是关于读取csv文件的主要内容,如果未能解决你的问题,请参考以下文章

vb.net 怎么生成csv文件与怎么读取csv文件

python csv读取方法及常用的csv读取代码

在python中,如何更新CSV文件中超过5K行的值?

Shell 代码 - 循环读取 CSV 文件并制作另一个

python中怎么读取csv文件

vb如何实时读取csv文件?