package com.reus;

import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;

import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class ExcelOperate {
    public static void main(String[] args) {
        SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss:SS");
        TimeZone t = sdf.getTimeZone();
        t.setRawOffset(0);
        sdf.setTimeZone(t);
        Long startTime = System.currentTimeMillis();
        String fileName = "E:\\b.xlsx";
        // 检测代码
        try {
//            PoiReadExcel er = new PoiReadExcel();
            // 读取excel2007
            testPoiExcel2007(fileName);
        } catch (Exception ex) {
//            Logger.getLogger(FastexcelReadExcel.class.getName()).log(Level.SEVERE, null, ex);
        }
        Long endTime = System.currentTimeMillis();
        System.out.println("用时:" + sdf.format(new Date(endTime - startTime)));
    }
    
    @SuppressWarnings("resource")
	public static void testPoiExcel2007(String strPath) throws IOException{
        // 构造 XSSFWorkbook 对象,strPath 传入文件路径
        XSSFWorkbook xwb = new XSSFWorkbook(strPath);
        // 读取第一章表格内容
        XSSFSheet sheet = xwb.getSheetAt(0);
        // 定义 row、cell
        XSSFRow row;
        String cell;
        // 循环输出表格中的内容
        for (int i = sheet.getFirstRowNum(); i < sheet.getPhysicalNumberOfRows(); i++) {
            row = sheet.getRow(i);
            for (int j = row.getFirstCellNum(); j < row.getPhysicalNumberOfCells(); j++) {
                // 通过 row.getCell(j).toString() 获取单元格内容,
                cell = row.getCell(j).toString();
                System.out.print(cell + "\t");
            }
            System.out.println("");
        }
	}
}
最近下载更多
luesjim  LV11 2020年7月12日
504066064  LV1 2020年4月15日
dpfjames  LV6 2020年4月10日
tangxjcxv65  LV2 2019年11月11日
yjzz123  LV9 2019年4月12日
NanWind  LV2 2019年4月10日
猴哥猴哥  LV12 2019年4月5日
XHacker  LV9 2018年12月22日
qiheideguang  LV16 2018年11月27日
xiahaoyu  LV8 2018年10月8日
最近浏览更多
tibbers  LV2 5月27日
Hachi6  LV13 2022年9月19日
奋斗人生 2022年3月11日
暂无贡献等级
地方撒地方的  LV2 2021年12月7日
tansuo阿郎  LV8 2021年11月29日
释辰 2021年10月29日
暂无贡献等级
雨凤凰  LV4 2021年8月25日
1090032627  LV2 2021年8月14日
一字清华  LV8 2021年3月6日
滴滴嗒嗒  LV15 2021年2月19日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友