Java操作excel(需要jxl包)

 

创建excellent

import java.io.File;

import java.io.IOException;

 

import jxl.Workbook;

import jxl.write.Label;

import jxl.write.WritableSheet;

import jxl.write.WritableWorkbook;

import jxl.write.WriteException;

import jxl.write.Number;

import jxl.write.biff.RowsExceededException;

 

public class CreateExcel {

 

public static void main(String args[]) {

 

try {

// 创建excel

WritableWorkbook book = Workbook.createWorkbook(new File(

"D://test2.xls"));

// 生成工作表,“0”表示第一页

WritableSheet sheet = book.createSheet("第一页", 0);

// 在Label对象中构造制定的第一列,第一行(0,0)

// 以及单元格的内容为“testtest”

Label label = new Label(0, 0, "liuli");

// 将值添加到单元格中

sheet.addCell(label);

// 生成一个保存数字的单元格,必须使用Number的完整包路径,否则将出现歧异

// 单元格位置为第二列,第一行,值为555.1234

Number number = new Number(1, 0, 555.1234);

// 将值添加到单元格中

sheet.addCell(number);

 

// 写入数据并关闭文件

book.write();

book.close();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (RowsExceededException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (WriteException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

读取Excel文件

import java.io.File;

import java.io.IOException;

 

import jxl.Cell;

import jxl.Sheet;

import jxl.Workbook;

import jxl.read.biff.BiffException;

 

// 读取Excel文件  

public class ReadExcel {

 

public static void main(String args[]) {

 

try {

// 打开文件

Workbook book = Workbook.getWorkbook(new File("D://test2.xls"));

// 获得第一个表的工作对象,“0”表示第一个表

Sheet sheet = book.getSheet(0);

int rows = sheet.getRows();

int cols = sheet.getColumns();

// 得到第一列,第一行的单元格(0,0)

for (int i = 0; i < rows; i++) {

for (int j = 0; j < cols; j++) {

Cell cell = sheet.getCell(j, i);

String result = cell.getContents();

System.out.print("  " + result + "  ");

}

System.out.println();

}

book.close();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (BiffException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

你可能感兴趣的:(Excel)