POI Excel 읽기

1424 단어 Excel
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");
    }
}

좋은 웹페이지 즐겨찾기