qq_34472071 2016-04-20 08:27 采纳率: 0%
浏览 2866

csv文件java的导入与导出

如何把csv文件的数据从一个文件导入另一个文件,java实现?

  • 写回答

1条回答

  • xiaoyao880609 2016-04-20 08:40
    关注

    导入:
    BufferedReader br = null;
    String line = "";
    try {
    br = new BufferedReader(new InputStreamReader(new FileInputStream(fullFilePath), "EUC-KR"));
    Integer index = 0;
    while ((line = br.readLine()) != null) {
    index++;
    if (index == 1) {
    continue;
    }
    String[] lines = line.split(",");
    XXX xxx = new XXX();
    xxx.setXxx(lines[0]);
    xxx.setXxx(lines[1]);
    xxx.setXxx(lines[2]);
    }
    } catch (UnsupportedEncodingException e1) {
    log.error("UnsupportedEncodingException" + e1.getMessage());
    e1.printStackTrace();
    } catch (FileNotFoundException e1) {
    log.error("FileNotFoundException" + e1.getMessage());
    } catch (IOException e) {
    log.error("IOException" + e.getMessage());
    } finally {
    if (br != null) {
    try {
    br.close();
    } catch (IOException e) {
    e.printStackTrace();
    }
    }
    }
    导出:
    List list = (List) model
    .get("list");
    //org.springframework.context.support.MessageSourceAccessor
    XSSFSheet sheet = workbook.createSheet("fileName");
    setText(getCell(sheet, 0, 1), "title1");
    setText(getCell(sheet, 0, 2), "title2");
    setText(getCell(sheet, 0, 3), "title3");
    setText(getCell(sheet, 0, 4), "title4");
    setText(getCell(sheet, 0, 5), "title5");
    // set date for excel
    int i = 1;
    for (Iterator it = list.iterator(); it.hasNext(); ) {
    Object obj = it.next();
    setText(getCell(sheet, i, 0), obj.getXxx());
    setText(getCell(sheet, i, 1), obj.getXxx());
    setText(getCell(sheet, i, 2), obj.getXxx());
    setText(getCell(sheet, i, 3), obj.getXxx());
    setText(getCell(sheet, i, 4), obj.getXxx());
    setText(getCell(sheet, i, 5), obj.getXxx());
    i++;
    }
    手敲的 有帮助的话请采纳~

    评论

报告相同问题?

悬赏问题

  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?