码迷,mamicode.com
首页 > 编程语言 > 详细

Java操作excel文件

时间:2016-11-27 20:05:56      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:get   int   arch   getc   div   nbsp   五行   excel   获取   

 

http://www.cnblogs.com/wuxinrui/archive/2011/03/20/1989326.html

 

import java.io.File;
import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;

public class ReadExcel {
    public static void main(String[] args) {
        try {
            //直接从本地文件(.xls)创建Workbook   
            String excelfile = "Book1.xls";
            Workbook workbook = Workbook.getWorkbook(new File(excelfile));   
            //获取第一张Sheet表   
            Sheet rs = workbook.getSheet(0);   
            //一旦得到了Sheet,就可以通过它来访问Excel Cell(术语:单元格)。   
            //第三步:访问单元格cell   
            //获取第一行,第一列的值   
            Cell c00 = rs.getCell(0, 0);   
            String strc00 = c00.getContents();   
            //获取第一行,第二列的值   
            Cell c10 = rs.getCell(1, 0);   
            String strc10 = c10.getContents();   
            //获取第二行,第二列的值   
            Cell c11 = rs.getCell(1, 1);   
            String strc11 = c11.getContents();   
            System.out.println("Cell(0, 0)" + " value : " + strc00 + "; type : " + c00.getType());   
            System.out.println("Cell(1, 0)" + " value : " + strc10 + "; type : " + c10.getType());   
            System.out.println("Cell(1, 1)" + " value : " + strc11 + "; type : " + c11.getType());   
            // 获取第四行,第一列的值
            Cell c03 = rs.getCell(0,3);
            System.out.println("第四行,第一列的值:"+c03.getContents());
            String contents = rs.getCell(0,4).getContents(); // 得到的是空字符串
            System.out.println("第五行,第一列的值:"+contents);
            String s44 = rs.getCell(3, 3).getContents();
            System.out.println(s44);
            
            
        } catch (Exception e) {
            e.printStackTrace();
        }
        
    }
}

 

Java操作excel文件

标签:get   int   arch   getc   div   nbsp   五行   excel   获取   

原文地址:http://www.cnblogs.com/stono/p/6106843.html

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