`

Java POI 读取Office excel (2003,2007)及相关jar包

阅读更多


poi-3.7-20101029.jar,下载地址:http://download.csdn.net/detail/evangel_z/4107089

geronimo-stax-api_1.0_spec-1.0.jar,下载地址:http://download.csdn.net/detail/evangel_z/4107083

xmlbeans-2.3.0.jar,下载地址:http://download.csdn.net/detail/evangel_z/4107140

poi-ooxml-3.7-20101029.jar,下载地址:http://download.csdn.net/detail/evangel_z/4107145

poi-ooxml-schemas-3.7-20101029.jar,下载地址:http://download.csdn.net/detail/evangel_z/4108997

以上5个jar,就可读取Excel 2003;

----------------------------------------------------------------------------------------------------------------------------------------

读取Excel 2007,请加上dom4j-1.6.1.jar,下载地址:http://download.csdn.net/detail/evangel_z/6739735

----------------------------------------------------------------------------------------------------------------------------------------

poi-3.6-20091214.jar,下载地址:http://download.csdn.net/detail/evangel_z/3895051
poi-contrib-3.6-20091214.jar,下载地址:http://download.csdn.net/detail/evangel_z/4107197

poi-scratch.6-20091214.jar,下载地址:http://download.csdn.net/detail/evangel_z/4107204
读取excel 文件的 java 代码:
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.PushbackInputStream;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.LinkedList;
import java.util.List;

import org.apache.poi.POIXMLDocument;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFDateUtil;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class read_Excel{
    /**
     * 对外提供读取excel 的方法
     */
    public static List<List<Object>> readExcel(File file) throws IOException{
        List<List<Object>> list = new LinkedList<List<Object>>();
        InputStream inp;
        try {
            inp = new FileInputStream(file);
            if(! inp.markSupported()) {
                inp = new PushbackInputStream(inp,;
            }
            try {
                if(POIFSFileSystem.hasPOIFSHeader(inp)) {
                    list = read2003Excel(file);
                }
                if(POIXMLDocument.hasOOXMLHeader(inp)) {
                    list = read2007Excel(file);
                }
            } catch (IOException e) {
                 throw new IOException("不支持的文件类型");
            }
          
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        return list;
    }

    /**
     * 读取 office 2003 excel
     * 
     * @throws IOException
     * @throws FileNotFoundException
     */
    private static List<List<Object>> read2003Excel(File file)
            throws IOException {
        List<List<Object>> list = new LinkedList<List<Object>>();
        HSSFWorkbook hwb = new HSSFWorkbook(new FileInputStream(file));
        HSSFSheet sheet = hwb.getSheetAt(0);
        Object value = null;
        HSSFRow row = null;
        HSSFCell cell = null;
        System.out.println("读取office 2003 excel内容如下:");
        for (int i = sheet.getFirstRowNum(); i <= sheet
                .getPhysicalNumberOfRows(); i++) {
            row = sheet.getRow(i);
            if (row == null) {
                continue;
            }
            List<Object> linked = new LinkedList<Object>();
            for (int j = row.getFirstCellNum(); j <= row.getLastCellNum(); j++) {
                cell = row.getCell(j);
                if (cell == null) {
                    continue;
                }
                DecimalFormat df = new DecimalFormat("0");// 格式化 number String
                // 字符
                SimpleDateFormat sdf = new SimpleDateFormat(
                        "yyyy-MM-dd HH:mm:ss");// 格式化日期字符串
                DecimalFormat nf = new DecimalFormat("0.00");// 格式化数字
                switch (cell.getCellType()) {
                case XSSFCell.CELL_TYPE_STRING:
                    // System.out.println(i + "行" + j + " 列 is String type");
                    value = cell.getStringCellValue();
                    System.out.print("  " + value + "  ");
                    break;
                case XSSFCell.CELL_TYPE_NUMERIC:
                    // System.out.println(i + "行" + j
                    // + " 列 is Number type ; DateFormt:"
                    // + cell.getCellStyle().getDataFormatString());
                    if ("@".equals(cell.getCellStyle().getDataFormatString())) {
                        value = df.format(cell.getNumericCellValue());

                    } else if ("General".equals(cell.getCellStyle()
                            .getDataFormatString())) {
                        value = nf.format(cell.getNumericCellValue());
                    } else {
                        value = sdf.format(HSSFDateUtil.getJavaDate(cell
                                .getNumericCellValue()));
                    }
                    System.out.print("  " + value + "  ");
                    break;
                case XSSFCell.CELL_TYPE_BOOLEAN:
                    // System.out.println(i + "行" + j + " 列 is Boolean type");
                    value = cell.getBooleanCellValue();
                    System.out.print("  " + value + "  ");
                    break;
                case XSSFCell.CELL_TYPE_BLANK:
                    // System.out.println(i + "行" + j + " 列 is Blank type");
                    value = "";
                    System.out.print("  " + value + "  ");
                    break;
                default:
                    // System.out.println(i + "行" + j + " 列 is default type");
                    value = cell.toString();
                    System.out.print("  " + value + "  ");
                }
                if (value == null || "".equals(value)) {
                    continue;
                }
                linked.add(value);

            }
            System.out.println("");
            list.add(linked);
        }

        return list;
    }

    /**
     * 读取Office 2007 excel
     */

    private static List<List<Object>> read2007Excel(File file)
            throws IOException {

        List<List<Object>> list = new LinkedList<List<Object>>();
        // String path = System.getProperty("user.dir") +
        // System.getProperty("file.separator")+"dd.xlsx";
        // System.out.println("路径:"+path);
        // 构造 XSSFWorkbook 对象,strPath 传入文件路径
        XSSFWorkbook xwb = new XSSFWorkbook(new FileInputStream(file));

        // 读取第一章表格内容
        XSSFSheet sheet = xwb.getSheetAt(0);
        Object value = null;
        XSSFRow row = null;
        XSSFCell cell = null;
        System.out.println("读取office 2007 excel内容如下:");
        for (int i = sheet.getFirstRowNum(); i <= sheet
                .getPhysicalNumberOfRows(); i++) {
            row = sheet.getRow(i);
            if (row == null) {
                continue;
            }
            List<Object> linked = new LinkedList<Object>();
            for (int j = row.getFirstCellNum(); j <= row.getLastCellNum(); j++) {
                cell = row.getCell(j);
                if (cell == null) {
                    continue;
                }
                DecimalFormat df = new DecimalFormat("0");// 格式化 number String
                // 字符
                SimpleDateFormat sdf = new SimpleDateFormat(
                        "yyyy-MM-dd HH:mm:ss");// 格式化日期字符串
                DecimalFormat nf = new DecimalFormat("0.00");// 格式化数字

                switch (cell.getCellType()) {
                case XSSFCell.CELL_TYPE_STRING:
                    // System.out.println(i + "行" + j + " 列 is String type");
                    value = cell.getStringCellValue();
                    System.out.print("  " + value + "  ");
                    break;
                case XSSFCell.CELL_TYPE_NUMERIC:
                    // System.out.println(i + "行" + j
                    // + " 列 is Number type ; DateFormt:"
                    // + cell.getCellStyle().getDataFormatString());
                    if ("@".equals(cell.getCellStyle().getDataFormatString())) {
                        value = df.format(cell.getNumericCellValue());

                    } else if ("General".equals(cell.getCellStyle()
                            .getDataFormatString())) {
                        value = nf.format(cell.getNumericCellValue());
                    } else {
                        value = sdf.format(HSSFDateUtil.getJavaDate(cell
                                .getNumericCellValue()));
                    }
                    System.out.print("  " + value + "  ");
                    break;
                case XSSFCell.CELL_TYPE_BOOLEAN:
                    // System.out.println(i + "行" + j + " 列 is Boolean type");
                    value = cell.getBooleanCellValue();
                    System.out.print("  " + value + "  ");
                    break;
                case XSSFCell.CELL_TYPE_BLANK:
                    // System.out.println(i + "行" + j + " 列 is Blank type");
                    value = "";
                    // System.out.println(value);
                    break;
                default:
                    // System.out.println(i + "行" + j + " 列 is default type");
                    value = cell.toString();
                    System.out.print("  " + value + "  ");
                }
                if (value == null || "".equals(value)) {
                    continue;
                }
                linked.add(value);
            }
            System.out.println("");
            list.add(linked);
        }
        return list;
    }
}
分享到:
评论

相关推荐

    Java POI读取Office excel (2003,2007)jar包集合

    Java POI读取Office excel (2003,2007)及相关jar包。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。

    poi-ooxml-3.7.jar 包下载

    poi-ooxml-3.7.jar包下载,最新可用支持office各种文档,Java POI读取Office excel (2003,2007)及相关jar包 其中的poi-ooxml-3.7.jar

    java 读取word、excel及pdf的jar包(POI,PDFBox)

    java开发中可能会用到的jar包 OFFICE文档(WORD,EXCEL)使用了POI控件,PDF使用了PDFBOX控件

    poi-ooxml-schemas-3.7-20101029.jar

    Java POI读取Office excel (2003,2007)及相关jar包 其中必要的poi-ooxml-schemas-3.7-20101029.jar

    poi-ooxml-3.7-20101029.jar

    Java POI读取Office excel (2003,2007)及相关jar包 其中的poi-ooxml-3.7-20101029.jar

    poi-scratchpad-3.5-beta1.jar

    Java POI读取Office excel (2003,2007)及相关jar包 其中相关的poi-scratchpad-3.5-beta1.jar

    poi-contrib-3.6-20091214.jar

    Java POI读取Office excel (2003,2007)及相关jar包 其中相关的poi-contrib-3.6-20091214.jar

    java读取office文档demo

    该demo是java读取office文档的示例demo。包含所需要的jar包。可以读取Excel、word、pdf、ppt等

    java操作EXCEL,jar包,含实例教程,poi-3.17

    Apache POI包含类和方法,来将MS Office所有OLE 2文档复合。此API组件的列表如下。 POIFS (较差混淆技术实现文件系统) : 此组件是所有其他POI元件的基本因素。它被用来明确地读取不同的文件。 HSSF (可怕的电子...

    poi3.9 jar包下载

    Apache POI项目的任务是根据Office Open XML标准(OOXML)和Microsoft的OLE 2复合文档格式(OLE2)创建和维护Java API,以处理各种文件格式。 简而言之,您可以使用Java读取和写入MS Excel文件。此外,您可以使用...

    Anroid开发所需poi_jar包

    Apache POI 简介是用Java编写的免费开源的跨平台的 Java API,Apache POI提供API给Java程式对Microsoft Office(Excel、WORD、PowerPoint、Visio等)格式档案读和写的功能。POI为“Poor Obfuscation Implementation...

    poi3.5的jar包

    POI提供API给Java程式对Microsoft Office格式档案读和写的功能。 结构:  HSSF - 提供读写Microsoft Excel格式档案的功能。  XSSF - 提供读写Microsoft Excel OOXML格式档案的功能。  HWPF - 提供读写...

    geronimo-stax-api_1.2_spec-1.1.jar

    Java POI读取Office excel (2003,2007) 其中的必要的jar包geronimo-stax-api_1.2_spec-1.1.jar

    Apache操作office文件jar包.zip

    Java读取excel时,所使用对象XSSFWorkbook的实现。Apache软件基金会用Java编写的免费开源的跨平台的 Java API,Apache POI提供API给Java程序对Microsoft Office格式档案读和写的功能。poi4.x已经很好的支持office ...

    官方poi Java导入导出

    Apache POI 是用 Java 编写的开源跨平台的 Java API,提供 API 给 Java 程式对 Microsoft Office 格式档案读和写的功能。简而言之,你可以使用 Java 读取和写入 MS Excel 文件,也可以读取和写入 MS Word 和 MS ...

    Apache POI库jar文件

    这些API可以帮助开发人员处理不同类型的Office文档,例如HSSF可以处理Excel 97-2003格式的电子表格,XSSF可以处理Excel 2007及以上版本的电子表格。 支持多种数据类型:Apache POI库支持多种数据类型,包括字符串...

    POI操作WORD 官方测试案例 DEMO.zip

    JAVA操作MS office 工具 POI操作WORD 官方测试案例 DEMO(含jar包,IDEA) 可直接运行测试。 ------------------------------------------------------ 1 什么是Apache POI 全称Apache POI,使用Java编写的免费...

Global site tag (gtag.js) - Google Analytics