码迷,mamicode.com
首页 > 其他好文 > 详细

读取Excel文件

时间:2016-11-14 15:25:01      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:对象   string   exception   nbsp   ring   sheet   system   public   读取excel   

 

绝对路径String filepath= "E:\\a.xls";

 

public static String getExcelData(File file,String lang,int length){
        String result = null;
        try {
            Workbook book = Workbook.getWorkbook(file);
            // 获得第一个工作表对象
            Sheet sheet = book.getSheet(0);
            // 得到第一列第一行的单元格         
            Cell language = sheet.getCell(0, 0);//列 ,行             
            }           
            book.close();
        } catch (Exception e) {
            System.out.println(e);
        }
        return result;
    }

 

读取Excel文件

标签:对象   string   exception   nbsp   ring   sheet   system   public   读取excel   

原文地址:http://www.cnblogs.com/Neanderthal/p/6061506.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!