我是靠谱客的博主 愉快白开水,最近开发中收集的这篇文章主要介绍从Excel中读取内容写入txt文件中,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package operateExcel;


import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;


import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;


public class ReadDescription {


public static void main(String[] args) {
// TODO Auto-generated method stub
//execl file
File excelFile=new File("C:\documents\在研项目\多层分类\中文新闻信息分类与代码\classificationDescription.xls");
File newTxtFile=null; //new .txt file
String newTxtFilePath="C:\file\program file\a"; //the path of new .txt file


try {
           Workbook book = Workbook.getWorkbook(excelFile);
           // 获得第一个工作表对象(Sheet)
           Sheet sheet = book.getSheet(0);
           
           Integer lineNumber=1; //the line number
           Integer lineFlag=7119; //the total line number
           while(lineNumber<lineFlag){
           // 得到第0列第lineNumber行的单元格
           Cell code = sheet.getCell(0, lineNumber);
           String codeStr = code.getContents().trim();
           
           // 得到第1列第lineNumber行的单元格
           Cell className = sheet.getCell(1, lineNumber);
           String classNameStr = className.getContents().trim();


           // 得到第1列第lineNumber行的单元格
           Cell description = sheet.getCell(2, lineNumber);
           String descriptionStr = description.getContents().trim();
           
           if(codeStr!=""&&!codeStr.equals("")){ //if code is not the null String
            String txtFileName=codeStr+".txt"; //the name of txtFile
           
            /*create file and write content*/
            newTxtFile=new File(newTxtFilePath,txtFileName);
            newTxtFile.createNewFile();
               FileWriter fw=new FileWriter(newTxtFile);
               BufferedWriter bw=new BufferedWriter(fw);
               
               bw.write(classNameStr);
               bw.newLine();
               bw.write(descriptionStr);
               
               bw.flush();
               bw.close();
           }
           
           
           lineNumber++; //line number add 1
           }
           
           book.close();
       } catch (Exception e) {
           System.out.println(e);
       }
}


}

参考文章:http://www.cnblogs.com/sunzhenxing19860608/archive/2010/12/27/1918128.html


最后

以上就是愉快白开水为你收集整理的从Excel中读取内容写入txt文件中的全部内容,希望文章能够帮你解决从Excel中读取内容写入txt文件中所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(68)

评论列表共有 0 条评论

立即
投稿
返回
顶部