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 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作