poi简单读取excel内容_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > poi简单读取excel内容

poi简单读取excel内容

 2012/3/22 12:52:24  lxmgfd  程序员俱乐部  我要评论(0)
  • 摘要:publicvoidtestIn(){try{//读取Excel中数据HSSFWorkbookworkbook=newHSSFWorkbook(newFileInputStream("D:\\test.xls"));HSSFSheetsheet=workbook.getSheetAt(0);HSSFRowrow=null;HSSFCellcell=null;introwIndex=0;while(true){Stringname=null;row=sheet.getRow(rowIndex)
  • 标签:excel 内容
public void testIn() {
        try {
            // 读取Excel中数据
            HSSFWorkbook workbook = new HSSFWorkbook(new FileInputStream("D:\\test.xls"));
            HSSFSheet sheet = workbook.getSheetAt(0);

            HSSFRow row = null;
            HSSFCell cell = null;

            int rowIndex = 0;

            while (true) {

                String name = null;
                row = sheet.getRow(rowIndex);
                if (row == null) {
                    break;
                }
                cell = row.getCell(0);
                if (cell != null) {
                    name = cell.getStringCellValue();
                }

                String code = null;
                cell = row.getCell(1);
                if (cell != null) {
                    code = cell.getStringCellValue();
                }

                System.out.println(name + " " + code);

                rowIndex++;
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

    }
发表评论
用户名: 匿名