Java读取Excel文件资料地几种方法Word格式文档下载.docx

上传人:b****4 文档编号:16497874 上传时间:2022-11-24 格式:DOCX 页数:13 大小:180.73KB
下载 相关 举报
Java读取Excel文件资料地几种方法Word格式文档下载.docx_第1页
第1页 / 共13页
Java读取Excel文件资料地几种方法Word格式文档下载.docx_第2页
第2页 / 共13页
Java读取Excel文件资料地几种方法Word格式文档下载.docx_第3页
第3页 / 共13页
Java读取Excel文件资料地几种方法Word格式文档下载.docx_第4页
第4页 / 共13页
Java读取Excel文件资料地几种方法Word格式文档下载.docx_第5页
第5页 / 共13页
点击查看更多>>
下载资源
资源描述

Java读取Excel文件资料地几种方法Word格式文档下载.docx

《Java读取Excel文件资料地几种方法Word格式文档下载.docx》由会员分享,可在线阅读,更多相关《Java读取Excel文件资料地几种方法Word格式文档下载.docx(13页珍藏版)》请在冰豆网上搜索。

Java读取Excel文件资料地几种方法Word格式文档下载.docx

Select*from[Sheet1$]"

ResultSetMetaDatarsmd=rs.getMetaData();

intnumberOfColumns=rsmd.getColumnCount();

System.out.println("

表格列数"

+numberOfColumns);

System.out.println(rsmd.getColumnName

(1)+"

"

+rsmd.getColumnName

(2)+"

+rsmd.getColumnName(3));

while(rs.next()){

for(inti=1;

i<

=numberOfColumns;

i++){

if(i>

1)System.out.print("

"

StringcolumnValue=rs.getString(i);

System.out.print(columnValue);

}

System.out.println("

"

rs.close();

st.close();

}

catch(Exceptionex){

System.err.print("

Exception:

"

System.err.println(ex.getMessage());

finally{

con.close();

}

执行结果如下:

2、jxl.jar

jxl.jar为开源代码,任何运行java虚拟机的操作系统都能使用这个jar包操作excel表格。

不依赖其他任何第三方的库。

下载地址:

mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/jexcelapi/jxl/2.6.10/jxl-2.6.10.jar

程序如下:

importjava.io.File;

importjxl.Sheet;

importjxl.Workbook;

//java-classpath.;

E:

\eclipse3.6.2\workspace\CrazyJava\lib\jxl.jarxuzhe.ExcelJXL

publicclassExcelJXL

{

staticStringsourceFile="

c:

\\name.xls"

;

//源文件

publicstaticvoidmain(String[]args)

{

try

{

Workbookbook=Workbook.getWorkbook(newFile(sourceFile));

//0代表第一个工作表对象

Sheetsheet=book.getSheet(0);

introws=sheet.getRows();

intcols=sheet.getColumns();

Stringcolname1=sheet.getCell(0,0).getContents().trim();

Stringcolname2=sheet.getCell(1,0).getContents().trim();

Stringcolname3=sheet.getCell(2,0).getContents().trim();

System.out.println(colname1+"

+colname2+"

+colname3);

for(intz=1;

z<

rows;

z++)

{

//0代表列数,z代表行数

Stringname=sheet.getCell(0,z).getContents();

Stringsex=sheet.getCell(1,z).getContents();

StringID=sheet.getCell(2,z).getContents();

System.out.println(name+"

+sex+"

+ID);

}

}

catch(Exceptione)

e.printStackTrace();

}

3、jcom.jar

jcom.jar是日本人开发的,也是一个开源项目,下载地址:

将jcom.jar拷贝到classlib目录下,将jcom.dll放到你的JAVA_HOME/bin目录下,否则会出现下面错误。

importjp.ne.so_net.ga2.no_ji.jcom.excel8.*;

importjp.ne.so_net.ga2.no_ji.jcom.*;

importjava.util.Date;

publicclassExcelJCOM{

publicstaticvoidmain(String[]args)throwsException{

JCOMReadExcel();

JCOMCreateExcel();

staticvoidJCOMReadExcel()

{

ReleaseManagerrm=newReleaseManager();

try

System.out.println("

EXCELstartup..."

//ifalreadystarted,opennewwindow

ExcelApplicationexcel=newExcelApplication(rm);

excel.Visible(true);

StringFilename="

ExcelWorkbooksxlBooks=excel.Workbooks();

ExcelWorkbookxlBook=xlBooks.Open(Filename);

ExcelWorksheetsxlSheets=xlBook.Worksheets();

//第一个工作表

ExcelWorksheetxlSheet=xlSheets.Item

(1);

ExcelRangexlRange=xlSheet.Cells();

inti;

intj;

for(j=1;

j<

=4;

j++)

{

for(i=1;

i<

=3;

i++)

System.out.print(xlRange.Item(j,i).Value());

if(i<

3)

{

System.out.print("

}

System.out.println("

}

catch(Exceptione){e.printStackTrace();

finally{rm.release();

staticvoidJCOMCreateExcel()

try{

System.out.println("

//ifalreadystarted,opennewwindow

ExcelApplicationexcel=newExcelApplication(rm);

excel.Visible(true);

//displayanyinformation

Version="

+excel.Version());

UserName="

+excel.UserName());

Caption="

+excel.Caption());

Value="

+excel.Value());

ExcelWorkbooksxlBooks=excel.Workbooks();

ExcelWorkbookxlBook=xlBooks.Add();

//createnewbook

//enumurateallfiles

System.out.println

("

setinfomationoffilesincurrentdirectorytocell..."

ExcelWorksheetsxlSheets=xlBook.Worksheets();

ExcelWorksheetxlSheet=xlSheets.Item

(1);

ExcelRangexlRange=xlSheet.Cells();

xlRange.Item(1,1).Value("

filename"

xlRange.Item(2,1).Value("

size"

xlRange.Item(3,1).Value("

lastmodifiedtime"

xlRange.Item(4,1).Value("

isdirectory"

xlRange.Item(5,1).Value("

isfile"

xlRange.Item(6,1).Value("

canread"

xlRange.Item(7,1).Value("

canwrite"

Filepath=newFile("

./"

String[]filenames=path.list();

for(inti=0;

i<

filenames.length;

Filefile=newFile(filenames[i]);

System.out.println(file);

xlRange.Item(1,i+2).Value(file.getName());

xlRange.Item(2,i+2).Value((int)file.length());

xlRange.Item(3,i+2).Value(newDate(file.lastModified()));

xlRange.Item(4,i+2).Value(file.isDirectory()?

Yes"

:

No"

xlRange.Item(5,i+2).Value(file.isFile()?

xlRange.Item(6,i+2).Value(file.canRead()?

xlRange.Item(7,i+2).Value(file.canWrite()?

charstart='

B'

charend=(char)((byte)start+filenames.length-1);

end=["

+end+"

]"

Stringexpression="

=Sum(B2:

+String.valueOf(end)+"

2)"

expression=["

+expression+"

embedequation,calculatesumoffilesize:

+expression);

xlRange.Item(1,filenames.length+2).Value("

sum"

xlRange.Item(2,filenames.length+2).Formula(expression);

xlRange.Columns().AutoFit();

//fitcolumns

//commentout,ifprintout.

//outputdefaultprinter.

//System.out.println("

printout..."

//xlSheet.PrintOut();

//commentout,ifbooksavetofile.

//ifnopath,saveto(MyDocuments)

//System.out.println

//("

savetofile...(MyDocuments)\\testExcel.xls"

xlBook.SaveAs("

testExcel.xls"

xlBook.Close(false,null,false);

excel.Quit();

thankyou."

4、poi.jar

poi.jar是apache旗下的一个开源项目,下载地址:

.apache.org/dyn/closer.cgi/poi/release/bin/poi-bin-3.8-20120326.zip

importorg.apache.poi.hssf.usermodel.*;

importjava.io.FileInputStream;

importjava.io.FileOutputStream;

importjava.io.IOException;

importorg.apache.poi.hssf.usermodel.HSSFCell;

importorg.apache.poi.hssf.usermodel.HSSFRow;

importorg.apache.poi.hssf.usermodel.HSSFSheet;

importorg.apache.poi.hssf.usermodel.HSSFWorkbook;

//

publicclassExcelPOI{

/**

*paramargs

*throwsIOException

*javaxuzhe.ExcelPOI

*/

SuppressWarnings("

deprecation"

publicstaticvoidmain(String[]args)throwsIOException{

//TODOAuto-generatedmethodstub

ExcelPOI.POICreateExcel();

ExcelPOI.POIReadExcel();

publicstaticvoidPOICreateExcel()throwsIOException

HSSFWorkbookwb=newHSSFWorkbook();

HSSFSheetsheet=wb.createSheet("

newsheet"

//0行

HSSFRowrow=sheet.createRow((short)0);

//1列

row.createCell((short)1).setCellValue("

HelloWorld"

FileOutputStreamfileOut=newFileOutputStream("

\\workbook.xls"

wb.write(fileOut);

fileOut.close();

privatestaticHSSFWorkbookreadFile(Stringfilename)throwsIOException{

returnnewHSSFWorkbook(newFileInputStream(filename));

publicstaticvoidPOIReadExcel()throwsIOException

StringfileName="

HSSFWorkbookwb=ExcelPOI.readFile(fileName);

Datadump:

\n"

for(intk=0;

k<

wb.getNumberOfSheets();

k++)

HSSFSheetsheet=wb.getSheetAt(k);

introws=sheet.getPhysicalNumberOfRows();

Sheet"

+k+"

\"

+wb.getSheetName(k)+"

\"

has"

+rows

+"

row(s)."

for(intr=0;

r<

r++)

HSSFRowrow=sheet.getRow(r);

if(row==null){

continue;

intcells=row.getPhysicalNumberOfCells();

System.out.println("

\nROW"

+row.getRowNum()+"

+cells

+"

cell(s)."

for(intc=0;

c<

cells;

c++)

HSSFCellcell=row.getCell(c);

Stringvalue=null;

switch(cell.getCellType())

{

caseHSSFCell.CELL_TYPE_FORMULA:

value="

FORMULAvalue="

+cell.getCellFormula();

break;

caseHSSFCell.CELL_TYPE_NUMERIC:

NUMERICvalue="

+cell.getNumericCellValue();

caseHSSFCell.CELL_TYPE_STRING:

STRINGvalue="

+cell.getStringCellValue();

default:

}

System.out.println("

CELLcol="

+cell.getColumnIndex()+"

VALUE="

+value);

以上就是我的一点心得体会,有误的地方请指正,来信发xuzhe_hn..。

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 初中教育 > 英语

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1