HSSF - 提供读写Microsoft Excel XLS格式档案的功能。
XSSF - 提供读写Microsoft Excel OOXML XLSX格式档案的功能。
HWPF - 提供读写Microsoft Word DOC格式档案的功能。
HSLF - 提供读写Microsoft PowerPoint格式档案的功能。
HDGF - 提供读Microsoft Visio格式档案的功能。
HPBF - 提供读Microsoft Publisher格式档案的功能。
HSMF - 提供读Microsoft Outlook格式档案的功能。
下载地址:poi-3.8-beta3-20110606.jar
读取xls文件
public class MainCenter {
public static void main(String[] args){
try{
File file = new File("c:/a.xls");
FileInputStream fi = new FileInputStream(file);
Workbook wb = new HSSFWorkbook(fi);
Sheet sheet = wb.getSheetAt(0);
for(int i = 0;i < sheet.getLastRowNum();i++){
Row r = sheet.getRow(i);
for(int j = 0;j < r.getLastCellNum();j++){
Cell c = r.getCell(0);
System.out.println(c.getStringCellValue());
break;
}
break;
}
}catch(Exception e){
e.printStackTrace();
}
System.out.println("end");
}
}