美文网首页
java工具代码-读取excel数据

java工具代码-读取excel数据

作者: 王古 | 来源:发表于2019-02-28 10:40 被阅读0次
    import java.io.File;  
    import java.io.FileInputStream;  
    import java.io.FileNotFoundException;  
    import java.io.IOException;  
    import java.io.InputStream;  
    import jxl.Sheet;  
    import jxl.Workbook;  
    import jxl.read.biff.BiffException;  
    
    
    public class G_Excel {
        public static void main(String arg[]){
            G_Excel obj = new G_Excel();
            File file = new File("F:/***********.xls");  
            obj.readExcel(file); 
            
        }
        
        public void readExcel(File file){
            try{
                InputStream is = new FileInputStream(file.getAbsolutePath());  
                // jxl提供的Workbook类  
                Workbook wb = Workbook.getWorkbook(is);  
                // Excel的页签数量  
                int sheet_size = wb.getNumberOfSheets();  
                //System.out.println(sheet_size);
                for (int index = 0; index < sheet_size; index++) {  
                    //每个页签创建一个Sheet对象  
                    Sheet sheet = wb.getSheet(index);  
                    // sheet.getRows()返回该页的总行数  
                    for (int i = 0; i < sheet.getRows(); i++) {  
                        // sheet.getColumns()返回该页的总列数  
                        for (int j = 0; j < sheet.getColumns(); j++) {  
                            String cellinfo = sheet.getCell(j, i).getContents();  
                            System.out.println(cellinfo);  
                            }  
                        }  
                    }  
                }
            catch (FileNotFoundException e) {  
                e.printStackTrace();  
                } catch (BiffException e) {  
                    e.printStackTrace();  
                } catch (IOException e) {  
                    e.printStackTrace();  
                }  
            } 
        }
        
    
    

    相关文章

      网友评论

          本文标题:java工具代码-读取excel数据

          本文链接:https://www.haomeiwen.com/subject/ksxhuqtx.html