用實(shí)例解析JAVA如何導(dǎo)出CSV文件

這篇文章主要用實(shí)例解析JAVA如何導(dǎo)出CSV文件,內(nèi)容清晰明了,對此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

成都創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站建設(shè)、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的尚義網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

用實(shí)例解析JAVA如何導(dǎo)出CSV文件

以前導(dǎo)出總是用POI導(dǎo)出為Excel文件,后來當(dāng)我了解到CSV以后,我發(fā)現(xiàn)速度飛快。

如果導(dǎo)出的數(shù)據(jù)不要求格式、樣式、公式等等,建議最好導(dǎo)成CSV文件,因?yàn)檎娴暮芸臁?/p>

雖然我們可以用Java再帶的文件相關(guān)的類去操作以生成一個(gè)CSV文件,但事實(shí)上有好多第三方類庫也提供了類似的功能。

這里我們使用apache提供的commons-csv組件

Commons CSV

文檔在這里

http://commons.apache.org/

http://commons.apache.org/proper/commons-csv/

http://commons.apache.org/proper/commons-csv/user-guide.html

先看一下具體用法

@Test public void testWrite() throws Exception {
  FileOutputStream fos = new FileOutputStream("E:/cjsworkspace/cjs-excel-demo/target/abc.csv");
  OutputStreamWriter osw = new OutputStreamWriter(fos, "GBK");

  CSVFormat csvFormat = CSVFormat.DEFAULT.withHeader("姓名", "年齡", "家鄉(xiāng)");
  CSVPrinter csvPrinter = new CSVPrinter(osw, csvFormat);//  csvPrinter = CSVFormat.DEFAULT.withHeader("姓名", "年齡", "家鄉(xiāng)").print(osw);

  for (int i = 0; i < 10; i++) {
   csvPrinter.printRecord("張三", 20, "湖北");
  }

  csvPrinter.flush();
  csvPrinter.close();

 }

 @Test public void testRead() throws IOException {
  InputStream is = new FileInputStream("E:/cjsworkspace/cjs-excel-demo/target/abc.csv");
  InputStreamReader isr = new InputStreamReader(is, "GBK");
  Reader reader = new BufferedReader(isr);

  CSVParser parser = CSVFormat.EXCEL.withHeader("name", "age", "jia").parse(reader);//  CSVParser csvParser = CSVParser.parse(reader, CSVFormat.DEFAULT.withHeader("name", "age", "jia"));
  List<CSVRecord> list = parser.getRecords();  for (CSVRecord record : list) {
   System.out.println(record.getRecordNumber()     + ":" + record.get("name")     + ":" + record.get("age")     + ":" + record.get("jia"));
  }

  parser.close();
 } /**
  * Parsing an Excel CSV File  */
 @Test public void testParse() throws Exception {
  Reader reader = new FileReader("C:/Users/Administrator/Desktop/abc.csv");
  CSVParser parser = CSVFormat.EXCEL.parse(reader);  for (CSVRecord record : parser.getRecords()) {
   System.out.println(record);
  }
  parser.close();
 } /**
  * Defining a header manually  */
 @Test public void testParseWithHeader() throws Exception {
  Reader reader = new FileReader("C:/Users/Administrator/Desktop/abc.csv");
  CSVParser parser = CSVFormat.EXCEL.withHeader("id", "name", "code").parse(reader);  for (CSVRecord record : parser.getRecords()) {
   System.out.println(record.get("id") + ","
     + record.get("name") + ","
     + record.get("code"));
  }
  parser.close();
 } /**
  * Using an enum to define a header  */
 enum MyHeaderEnum {
  ID, NAME, CODE;
 }

 @Test public void testParseWithEnum() throws Exception {
  Reader reader = new FileReader("C:/Users/Administrator/Desktop/abc.csv");
  CSVParser parser = CSVFormat.EXCEL.withHeader(MyHeaderEnum.class).parse(reader);  for (CSVRecord record : parser.getRecords()) {
   System.out.println(record.get(MyHeaderEnum.ID) + ","
     + record.get(MyHeaderEnum.NAME) + ","
     + record.get(MyHeaderEnum.CODE));
  }
  parser.close();
 } private List<Map<String, String>> recordList = new ArrayList<>();

 @Before public void init() {  for (int i = 0; i < 5; i++) {
   Map<String, String> map = new HashMap<>();
   map.put("name", "zhangsan");
   map.put("code", "001");
   recordList.add(map);
  }
 }

 @Test public void writeMuti() throws InterruptedException {
  ExecutorService executorService = Executors.newFixedThreadPool(3);
  CountDownLatch doneSignal = new CountDownLatch(2);

  executorService.submit(new exprotThread("E:/0.csv", recordList, doneSignal));
  executorService.submit(new exprotThread("E:/1.csv", recordList, doneSignal));

  doneSignal.await();
  System.out.println("Finish!!!");
 } class exprotThread implements Runnable {  private String filename;  private List<Map<String, String>> list;  private CountDownLatch countDownLatch;  public exprotThread(String filename, List<Map<String, String>> list, CountDownLatch countDownLatch) {   this.filename = filename;   this.list = list;   this.countDownLatch = countDownLatch;
  }

  @Override  public void run() {   try {
    CSVPrinter printer = new CSVPrinter(new FileWriter(filename), CSVFormat.EXCEL.withHeader("NAME", "CODE"));    for (Map<String, String> map : list) {
     printer.printRecord(map.values());
    }
    printer.close();
    countDownLatch.countDown();
   } catch (IOException e) {
    e.printStackTrace();
   }
  }
 }

CSV與EXCEL

  /**
  * 測試寫100萬數(shù)據(jù)需要花費(fèi)多長時(shí)間  */
 @Test public void testMillion() throws Exception {  int times = 10000 * 10;
  Object[] cells = {"滿100減15元", "100011", 15};  // 導(dǎo)出為CSV文件
  long t1 = System.currentTimeMillis();
  FileWriter writer = new FileWriter("G:/test1.csv");
  CSVPrinter printer = CSVFormat.EXCEL.print(writer);  for (int i = 0; i < times; i++) {
   printer.printRecord(cells);
  }
  printer.flush();
  printer.close();  long t2 = System.currentTimeMillis();
  System.out.println("CSV: " + (t2 - t1));  // 導(dǎo)出為Excel文件
  long t3 = System.currentTimeMillis();
  XSSFWorkbook workbook = new XSSFWorkbook();
  XSSFSheet sheet = workbook.createSheet();  for (int i = 0; i < times; i++) {
   XSSFRow row = sheet.createRow(i);   for (int j = 0; j < cells.length; j++) {
    XSSFCell cell = row.createCell(j);
    cell.setCellValue(String.valueOf(cells[j]));
   }
  }
  FileOutputStream fos = new FileOutputStream("G:/test2.xlsx");
  workbook.write(fos);
  fos.flush();
  fos.close();  long t4 = System.currentTimeMillis();
  System.out.println("Excel: " + (t4 - t3));
 }

Maven依賴

<dependencies>
 <dependency>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-csv</artifactId>
  <version>1.5</version>
 </dependency>

 <dependency>
  <groupId>org.apache.poi</groupId>
  <artifactId>poi</artifactId>
  <version>3.17</version>
 </dependency>

 <dependency>
  <groupId>org.apache.poi</groupId>
  <artifactId>poi-ooxml</artifactId>
  <version>3.17</version>
 </dependency>


 <dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>4.12</version>
  <scope>test</scope>
 </dependency></dependencies>

最后,剛才的例子中只寫了3個(gè)字段,100萬行,生成的CSV文件有十幾二十兆,太多的話建議分多個(gè)文件打包下周,不然想象一個(gè)打開一個(gè)幾百兆的excel都費(fèi)勁。

看完上述內(nèi)容,是不是對用實(shí)例解析JAVA如何導(dǎo)出CSV文件有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

分享名稱:用實(shí)例解析JAVA如何導(dǎo)出CSV文件
文章分享:http://muchs.cn/article34/ihssse.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導(dǎo)航、小程序開發(fā)、網(wǎng)站建設(shè)定制開發(fā)、網(wǎng)站改版企業(yè)網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都seo排名網(wǎng)站優(yōu)化