bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

Java實(shí)現(xiàn)將txt文件轉(zhuǎn)成xls文件的方法

最近項(xiàng)目用到txt文件和xls文件的轉(zhuǎn)換,這里記錄一下具體的思路。

創(chuàng)新互聯(lián)是專業(yè)的通海網(wǎng)站建設(shè)公司,通海接單;提供成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營(yíng)銷網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行通海網(wǎng)站開發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!

下面利用java代碼實(shí)現(xiàn)txt轉(zhuǎn)xls,這里要使用到j(luò)xl.jar包,這個(gè)包是通過java來操作Excel表格的工具類庫(kù)。

該jar包支持字體、數(shù)字、日期操作,能夠修飾單元格屬性,還能夠支持圖像和圖表,基本上已經(jīng)滿足我們的日常操作,最主要的是這套API是純Java實(shí)現(xiàn)的,在Windows和Linux操作系統(tǒng)下,它都可以正確的處理Excel文件。

具體實(shí)現(xiàn)代碼如下:

package test;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

import jxl.Workbook;
import jxl.write.Label;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;

public class txtToxls {
    //txt文本路徑
    static String txtFilePath = "D:\\Super_PLU.txt";
    //xls路徑
    static String xlsFilePath = "D:\\Super_PLU.xls";
    //每一列的列名
    static String c1Name, c2Name, c3Name, c4Name, c5Name, c6Name, c7Name, c8Name;

    public static void main(String args[]) {
      // 將txt文件進(jìn)行解析,保存為L(zhǎng)ist
      ArrayList<TxtFile> xlsList = getTxtInfos();
      // 將List以xls保存
      TransToExcel(xlsList);
    }

    private static ArrayList<TxtFile> getTxtInfos() {
      ArrayList<TxtFile> txtFileList = new ArrayList<TxtFile>();
      BufferedReader bufferedReader = null;
      try {
        // 這里注意指定文件的編碼格式
        bufferedReader = new BufferedReader(new InputStreamReader(new FileInputStream(txtFilePath), "gbk"));
        String element = null;
        int index = 0;
        while ((element = bufferedReader.readLine()) != null) {
          //如果是此行為空,則跳過
          if(element.trim().equals("")){
            continue;
          }
          //第一行作為每列名稱
          String[] value = element.trim().split(",");
          if (index == 0) {
            c1Name = value[0];
            c2Name = value[1];
            c3Name = value[2];
            c4Name = value[3];
            c5Name = value[4];
            c6Name = value[5];
            c7Name = value[6];
            c8Name = value[7];
            index = 1;
            continue;
          }
          //從第二行開始讀取每行內(nèi)容,以TxtFile形式存儲(chǔ)
          TxtFile txtFile = new TxtFile(Integer.parseInt(value[0]), Integer.parseInt(value[1]), value[2], value[3], value[4], Integer.parseInt(value[5]), Integer.parseInt(value[6]), Integer.parseInt(value[7]));
          txtFileList.add(txtFile);
        }
      } catch (Exception e) {
        e.printStackTrace();
      } finally {
        if (bufferedReader != null) {
          try {
            bufferedReader.close();
          } catch (IOException e) {
            e.printStackTrace();
          }
        }
      }
      return txtFileList;
    }

  private static void TransToExcel(ArrayList<TxtFile> txtFileList) {
    WritableWorkbook book = null;
    try {
      // 創(chuàng)建一個(gè)xls文件
      book = Workbook.createWorkbook(new File(xlsFilePath));
      // 生成名為'商品信息'的工作表,這里參數(shù)0表示第一頁(yè)
      WritableSheet sheet = book.createSheet("商品信息", 0);
      // 在Label對(duì)象為每一列添加列名,即每一列的第一行      
      Label label1 = new Label(0, 0, c1Name);
      Label label2 = new Label(1, 0, c2Name);
      Label label3 = new Label(2, 0, c3Name);
      Label label4 = new Label(3, 0, c4Name);
      Label label5 = new Label(4, 0, c5Name);
      Label label6 = new Label(5, 0, c6Name);
      Label label7 = new Label(6, 0, c7Name);
      Label label8 = new Label(7, 0, c8Name); 
      // 將定義好列名添加到工作表中
      sheet.addCell(label1);
      sheet.addCell(label2);
      sheet.addCell(label3);
      sheet.addCell(label4);
      sheet.addCell(label5);
      sheet.addCell(label6);
      sheet.addCell(label7);
      sheet.addCell(label8);

      /*
       * 遍歷傳進(jìn)來的List,把每一行的內(nèi)容再順序加入到工作表中,
       * 在生成數(shù)字單元格時(shí), 必須使用Number的完整包路徑 
       */
      for (int i = 0; i < txtFileList.size(); i++) {
        TxtFile p = txtFileList.get(i); 
        jxl.write.Number item_code = new jxl.write.Number(0, (i+1), p.item_code);
        jxl.write.Number plu = new jxl.write.Number(1, (i+1), p.plu);
        Label commodity = new Label(2, (i+1), p.commodity);
        Label ingredient= new Label(3, (i+1), p.ingredient);
        Label special = new Label(4, (i+1), p.special);
        jxl.write.Number use_by_date = new jxl.write.Number(5, (i+1), p.use_by_date);
        jxl.write.Number use_by_date_print = new jxl.write.Number(6, (i+1), p.use_by_date_print);
        jxl.write.Number packge_by_date_print = new jxl.write.Number(7, (i+1), p.packge_by_date_print);

        sheet.addCell(item_code);
        sheet.addCell(plu);
        sheet.addCell(commodity);
        sheet.addCell(ingredient);
        sheet.addCell(special);
        sheet.addCell(use_by_date);
        sheet.addCell(use_by_date_print);
        sheet.addCell(packge_by_date_print);
      }
      book.write();
      book.close();
    } catch (Exception e) {
      e.printStackTrace();;
    }
  }
}
  // txt文件model類
  class TxtFile {
    int item_code;
    int plu;
    String commodity;
    String ingredient;
    String special;
    int use_by_date;
    int use_by_date_print;
    int packge_by_date_print;

    public TxtFile(int item_code, int plu, String commodity, String ingredient, String special,int use_by_date, int use_by_date_print, int packge_by_date_print) {
      this.item_code = item_code;
      this.plu = plu;
      this.commodity = commodity;
      this.ingredient = ingredient;
      this.special = special;
      this.use_by_date = use_by_date;
      this.use_by_date_print = use_by_date_print;
      this.packge_by_date_print = packge_by_date_print;
    }
  }

以上這篇Java實(shí)現(xiàn)將txt文件轉(zhuǎn)成xls文件的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持創(chuàng)新互聯(lián)。

網(wǎng)站標(biāo)題:Java實(shí)現(xiàn)將txt文件轉(zhuǎn)成xls文件的方法
文章地址:http://vcdvsql.cn/article14/poopge.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁(yè)設(shè)計(jì)公司、網(wǎng)站排名、ChatGPT網(wǎng)站營(yíng)銷、全網(wǎng)營(yíng)銷推廣企業(yè)網(wǎng)站制作

廣告

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

微信小程序開發(fā)