java读取Excel文件(*.xls)_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java读取Excel文件(*.xls)

java读取Excel文件(*.xls)

 2012/2/24 9:58:30  LiaoJuncai  程序员俱乐部  我要评论(0)
  • 摘要:利用jsl.jar这个包,可以很容易的读取xls文件,包在下面的附件中importjava.io.File;importjava.io.IOException;importjava.util.ArrayList;importjava.util.List;importjxl.Sheet;importjxl.Workbook;importjxl.read.biff.BiffException;publicclassParseExcel{staticList<String[]>parse
  • 标签:XLS excel 文件 Java

利用jsl.jar这个包,可以很容易的读取xls文件,包在下面的附件中

?

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;

public class ParseExcel {

static List<String[]> parse(File file) {
List<String[]> excelValueList = new ArrayList<String[]>();
if (file.exists() && file.canRead()
&& (file.getName().lastIndexOf(".xls") >= 1)) {
Workbook workbook = null;
try {
workbook = Workbook.getWorkbook(file);
Sheet sheet = workbook.getSheet(0);
int row = sheet.getRows();
int col = sheet.getColumns();
for (int r = 0; r < row; r++) {
String[] rowValue = new String[col];
for (int c = 0; c < col; c++) {
rowValue[c] = sheet.getCell(c, r).getContents() != null ? sheet
.getCell(c, r).getContents()
: "";
}
excelValueList.add(rowValue);
}
} catch (BiffException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
if (workbook != null) {
workbook.close();
}
}
}
return excelValueList;
}
public static void main(String[] args) {
String fname = "E:\\1\\高新技术(处理后).xls";
File file = new File(fname);
List<String[]> excelValueList = new ArrayList<String[]>();
excelValueList = parse(file);
for(String[] sa:excelValueList){
for(String s:sa){
System.out.print(s+"----");
}
System.out.println();
}
}

}

?

?

  • jxl.jar (589.7 KB)
  • 下载次数: 6
发表评论
用户名: 匿名