`

使用dom4j解析XML文件(3)

阅读更多
1.源代码
package com.zx.str;

import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;

import com.zx.exception.ExcelConfigException;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * <pre>
 * 功能描述:EXCEL配置信息存储类
 *   
 * Author : penghuaiyi
 * Date   : 2007-11-14
 * Time   : 09:22:19
 * Version: 1.2
 * </pre>
 */
public class ExcelMappingConfig
{
	private final InputStream is; //输入流
    private final String configFileName;//配置文件名称
    
    private Map<String,Object> head=new HashMap<String,Object>();//EXCEL表头
    private String className; //EXCEL文件对应类的配置信息
    private String sheetNameField; //EXCEL文件工作表名称对应JAVA字段的配置信息
    private Map<String,Object> title=new HashMap<String,Object>(); //EXCEL文件标题的配置信息
    private List<Map<String,Object>> cells = new ArrayList<Map<String,Object>>(); //EXCEL文件数据项对应JAVA字段的配置信息
    private Map<String,Object> data = new HashMap<String,Object>(); //EXCEL文件数据的配置信息

    /**
     * <pre>
     * 设置EXCEL配置文件
     *
     * @param configFilePath  EXCEL配置文件路径
     *                        以"/"开始的,是相对于classpath根目录的路径;
     *                        否则相对于本文件所在目录的路径
     *
     * @throws ExcelConfigException 配置文件异常
     * </pre>
     */
    public ExcelMappingConfig(String configFilePath) throws ExcelConfigException
    {
        if(configFilePath==null)
        {
            throw new ExcelConfigException("没有初始化EXCEL配置文件!");
        }
        try
		{
        	is=getClass().getResourceAsStream(configFilePath);
		}
		catch (Exception e)
		{
			throw new ExcelConfigException("没有找到EXCEL配置文件!");
		}
		configFileName=configFilePath;
        init();
    }
    
    /**
     * <pre>
     * 设置EXCEL配置文件
     *
     * @param configFile  EXCEL配置文件
     *
     * @throws ExcelConfigException 配置文件异常
     * </pre>
     */
    public ExcelMappingConfig(File configFile) throws ExcelConfigException
    {
        if(configFile==null)
        {
            throw new ExcelConfigException("没有初始化EXCEL配置文件!");
        }
        try
		{
			is=new FileInputStream(configFile);
		}
		catch (Exception e)
		{
			throw new ExcelConfigException("没有找到EXCEL配置文件!");
		}
		configFileName=configFile.getName();
        init();
    }
    
    public Map<String, Object> getHead()
	{
		return head;
	}

    public String getClassName()
    {
        return className;
    }

    public String getSheetNameField()
    {
        return sheetNameField;
    }
    
    public Map<String, Object> getTitle()
	{
		return title;
	}

	public List<Map<String,Object>> getCells()
    {
        return cells;
    }

    public Map<String,Object> getData()
    {
        return data;
    }

    /**
     * <pre>
     * 解析EXCEL配置文件
     *
     * @throws ExcelConfigException  配置文件异常
     * </pre>
     */
    private void init() throws ExcelConfigException
    {
        SAXReader saxReader = new SAXReader();
        Document doc;
        try
        {
            doc = saxReader.read(is);
        }
        catch (Exception e)
        {
            throw new ExcelConfigException("无法解析配置文件"+configFileName+"!");
        }
        
        /*读取head*/
        Element headElement = (Element)doc.selectSingleNode("excel-mapping-config/head");
        if (headElement != null)
        {
        	setMapIntegerByElementAttribute(head, headElement, "height",true);
        	
        	headElement = (Element)doc.selectSingleNode("excel-mapping-config/head/merge");
        	if(headElement ==null)
        	{
        		throw new ExcelConfigException("在配置文件" + configFileName + "中没有找到excel-mapping-config/head/merge结点!");
        	}
        	setMapIntegerByElementAttribute(head, headElement, "beginColumn",false);
        	setMapIntegerByElementAttribute(head, headElement, "beginRow",false);
        	setMapIntegerByElementAttribute(head, headElement, "endColumn",false);
        	setMapIntegerByElementAttribute(head, headElement, "endRow",false);
        }
        
        /*读取className*/
        Element classNameElement = (Element)doc.selectSingleNode("excel-mapping-config/className");
        if (classNameElement == null)
        {
            throw new ExcelConfigException("在配置文件" + configFileName + "中没有找到excel-mapping-config/className结点!");
        }
        className=classNameElement.getTextTrim();
        if(className==null||className.length()==0)
        {
            throw new ExcelConfigException("在配置文件" + configFileName + "中结点excel-mapping-config/className没有设置内容!");
        }
        
        /*读取sheet*/
        Element sheetNode = (Element)doc.selectSingleNode("excel-mapping-config/sheet");
        if(sheetNode==null)
        {
           throw new ExcelConfigException("在配置文件" + configFileName + "中没有找到excel-mapping-config/sheet结点!");
        }
        sheetNameField=sheetNode.attributeValue("nameField");
        if(sheetNameField==null||sheetNameField.length()==0)
        {
            throw new ExcelConfigException("在配置文件" + configFileName + "中结点excel-mapping-config/sheet结点中的nameField属性没有设置内容!");
        }
        
        /*读取title*/
        Element titleElement = (Element) doc.selectSingleNode("excel-mapping-config/sheet/title");
        if (titleElement == null)
        {
             throw new ExcelConfigException("在配置文件" + configFileName + "中没有找到excel-mapping-config/sheet/title结点!");
        }
        setMapIntegerByElementAttribute(title, titleElement, "row",false);
        setMapIntegerByElementAttribute(title, titleElement, "height",true);
        setMapBooleanByElementAttribute(title, titleElement, "freeze",true);
        setMapBooleanByElementAttribute(title, titleElement, "checkTitleName",true);
        
        /*读取cell*/
        List cellList = doc.selectNodes("excel-mapping-config/sheet/title/cell");
        if(cellList==null)
        {
           throw new ExcelConfigException("在配置文件" + configFileName + "中没有找到excel-mapping-config/sheet/title/cell结点!");
        }
        for(Object obj:cellList)
        {
            Element cellElement=(Element)obj;
            Map<String,Object> cellMap=new HashMap<String,Object>();
            setMapIntegerByElementAttribute(cellMap, cellElement, "column",false);
            setMapStringByElementAttribute(cellMap, cellElement, "field",false);
            setMapIntegerByElementAttribute(cellMap, cellElement, "maxLength",true);
            setMapStringByElementAttribute(cellMap, cellElement, "type",true);
            setMapStringByElementAttribute(cellMap, cellElement, "format",true);
            setMapIntegerByElementAttribute(cellMap, cellElement, "width",true);
            cellMap.put("titleName",cellElement.getTextTrim());
            cells.add(cellMap);
        }
        
        /*读取data*/
        Element dataElement = (Element) doc.selectSingleNode("excel-mapping-config/sheet/data");
        if (dataElement == null)
        {
             throw new ExcelConfigException("在配置文件" + configFileName + "中没有找到excel-mapping-config/sheet/data结点!");
        }
        setMapIntegerByElementAttribute(data, dataElement, "begin",false);
        setMapIntegerByElementAttribute(data, dataElement, "end",true);
        setMapIntegerByElementAttribute(data, dataElement, "height",true);
    }

    /**
     * <pre>
     * 取得EXCEL配置文件的一个结点元素的属性信息,校验它是否为整数,并存放在MAP中
     *
     * @param map             存储EXCEL配置文件信息
     * @param element         EXCEL配置文件的一个结点元素
     * @param attributeName   EXCEL配置文件的一个结点元素的属性名
     * @param isOptional      EXCEL配置文件的一个结点元素的属性是否为可选顶
     *
     * @throws ExcelConfigException  配置文件异常
     * </pre>
     */
    private void setMapIntegerByElementAttribute(Map<String,Object> map, Element element, String attributeName,boolean isOptional) throws ExcelConfigException
    {
        String attributeValue = element.attributeValue(attributeName);
        if (attributeValue == null || attributeValue.trim().length() ==0)
        {
            if(!isOptional)
            {
               throw new ExcelConfigException("在配置文件" + configFileName + "中结点"+element.getName()+"的属性"+attributeName+"没有设置!");
            }
        }
        else
        {
            try
            {
            	map.put(attributeName, Integer.parseInt(attributeValue.trim()));
            }
            catch (NumberFormatException nfe)
            {
                throw new ExcelConfigException("在配置文件" + configFileName + "中结点"+element.getName()+"的属性"+attributeName+"不是Integer类型!");
            }
        }
    }

    /**
     * <pre>
     * 取得EXCEL配置文件的一个结点元素的属性信息,并存放在MAP中
     *
     * @param map             存储EXCEL配置文件信息
     * @param element         EXCEL配置文件的一个结点元素
     * @param attributeName   EXCEL配置文件的一个结点元素的属性名
     * @param isOptional      EXCEL配置文件的一个结点元素的属性是否为可选顶
     *
     * @throws ExcelConfigException  配置文件异常
     * </pre>
     */
    private void setMapStringByElementAttribute(Map<String,Object> map, Element element, String attributeName,boolean isOptional) throws ExcelConfigException
    {
        String attributeValue = element.attributeValue(attributeName);
        if (attributeValue == null || attributeValue.trim().length() ==0)
        {
            if(!isOptional)
            {
                throw new ExcelConfigException("在配置文件" + configFileName + "中结点"+element.getName()+"的属性"+attributeName+"没有设置!");
            }
        }
        else
        {
            map.put(attributeName,attributeValue.trim());
        }
    }
    
    /**
     * <pre>
     * 取得EXCEL配置文件的一个结点元素的属性信息,校验它是否为Boolean,并存放在MAP中
     *
     * @param map             存储EXCEL配置文件信息
     * @param element         EXCEL配置文件的一个结点元素
     * @param attributeName   EXCEL配置文件的一个结点元素的属性名
     * @param isOptional      EXCEL配置文件的一个结点元素的属性是否为可选顶
     *
     * @throws ExcelConfigException  配置文件异常
     * </pre>
     */
    private void setMapBooleanByElementAttribute(Map<String,Object> map, Element element, String attributeName,boolean isOptional) throws ExcelConfigException
    {
        String attributeValue = element.attributeValue(attributeName);
        if (attributeValue == null || attributeValue.trim().length() ==0)
        {
            if(!isOptional)
            {
               throw new ExcelConfigException("在配置文件" + configFileName + "中结点"+element.getName()+"的属性"+attributeName+"没有设置!");
            }
        }
        else
        {
        	map.put(attributeName, Boolean.valueOf((attributeValue.trim())));
        }
    }
}




2.要解析的xml文件
<?xml version="1.0" encoding="UTF-8"?>

<!--Excel文件格式配置信息-->
<excel-mapping-config>
	<!-- 
	EXCEL表头,仅用于导出时(可选项)
	
	属性       说明  
	height   :EXCEL头单元格高度(可选项)
	-->
	<head height="600">
		<!-- 
		合并EXCEL表头单元格,若设置头部,则为必选项
		
		属性             说明  
	    beginColumn   :合并起始列位置索引(从0开始计数)
	    beginRow      :合并起始行位置索引(从0开始计数)
	    endColumn     :合并终止列位置索引(从0开始计数)
	    endRow        :合并终止行位置索引(从0开始计数)
		-->
		<merge beginColumn="0" beginRow="0" endColumn="7" endRow="0"/>
	</head>

    <!--
        与EXCEL文件数据对应的JAVA类

         说明:   1. 该类必须提供公有的默认构造方法
               2. 映射字段对应成员必须提供公有的set方法和get方法
               3. 映射字段对应成员类型可以为字符类型(java.lang.String),
               				    数字类型(java.lang.Double),
               				    日期类型(java.util.Date)
               4.导入时建议实现接口com.iman.lts.common.excel.entity.IBaseExcel				    
    -->
    <className>com.iman.common.excel.example.Example</className>
	
	<!-- 
	    EXCEL文件工作表配置信息

         属性        说明
    	nameField :工作表名称所对应JAVA类的字段名称 
	-->
    <sheet nameField="sheetName">
    	<!-- 
    	EXCEL文件标题配置信息

         属性       说明
    	row      :标题行位置索引(从0开始计数)
    	height   :标题单元格高度,仅用于导出时(可选项)
    	freeze   :是否冻结{true,false},默认false,仅用于导出时(可选项)
    	checkTitleName:是否校验标题名称{true,false},默认false,仅用于导入时(可选项)
    	 -->
        <title row="1" height="400" freeze="true" checkTitleName="false">
            <!--
                EXCEL文件数据元素配置信息

                  属性       说明
                column   :列位置索引,从0开始计数
                field    :数据元素所对应JAVA类的字段名称
                type     :数据类型{Double,Date,String},默认String(可选项)
                format   :数据格式,只可用于Double和Date类型(可选项)
                maxLength:数据元素的最大长度,用于String类型,默认全部长度;若超过最大长度,则截取到最大长度,仅用于导入时(可选项)
                width    :数据元素单元格宽度,仅用于导出时(可选项)
            -->
            <cell column="0" field="id" type="Double" format="#">编号</cell>
            <cell column="1" field="name" width="15">姓名</cell>
            <cell column="2" field="age" type="Double" format="#">年龄</cell>
            <cell column="3" field="birthday" type="Date" format="yyyy-MM-dd" width="15">出生日期</cell>
            <cell column="4" field="salary" type="Double" format="#.00" width="20">薪水</cell>
            <cell column="5" field="bonus" type="Double" format="#.00" width="20">奖金</cell>
            <cell column="6" field="statDate" type="Date" format="yyyy-MM-dd HH:mm:ss" width="25">统计时间</cell>
            <cell column="7" field="remark" maxLength="200" width="50">备注</cell>
        </title>
        <!--
		  数据属性配置信息

		  属性      说明
		  begin   :数据元素的起始行,从0开始计数
		  end     :数据元素的结束行,从0开始计数,默认到最后一行,仅用于导入时(可选项)
		  height  :数据元素单元格高度,仅用于导出时(可选项)
	     -->
         <data begin="2" end="" height="300"/>
    </sheet>
</excel-mapping-config>
分享到:
评论
1 楼 handonghandong 2009-08-20  
你的ExcelConfigException类是自己的吧?

相关推荐

    dom4j解析xml文件(增删改查)

    在“dom4j解析xml文件(增删改查)”这个主题中,我们将深入探讨如何使用DOM4J来实现XML文档的四种基本操作:增加元素、删除元素、更新元素内容以及查询元素。 首先,让我们了解DOM4J的基本用法。在解析XML文件时,...

    dom4j解析xml文件的压缩包

    为了使用这个库,你需要将该jar包添加到项目的类路径中,然后就可以通过DOM4J提供的类和方法来解析和操作XML文件了。 总之,DOM4J是一个功能强大的XML处理库,无论是在小型项目还是大型系统中,都能发挥其优势,...

    dom4j解析xml详解

    ### DOM4J解析XML详解 #### 一、DOM4J简介与特性 DOM4J是一个由dom4j.org开发的开源XML解析包,专为Java平台设计,它不仅支持DOM、SAX和JAXP标准,还巧妙地融入了Java集合框架,使其成为Java开发者在处理XML数据时...

    分别使用DOM和DOM4j解析XML文件

    以下是如何使用DOM4j解析XML: 1. 引入DOM4j库(如:dom4j-1.6.1.jar)。 2. 创建DocumentFactory实例。 3. 使用DocumentFactory的read()方法读取XML文件,得到Document对象。 4. 使用Document对象提供的方法(如...

    使用DOM4j解析XML文件

    ### 使用DOM4j解析XML文件:提升开发效率与代码可读性 在现代软件开发中,XML(Extensible Markup Language)是一种广泛使用的数据交换格式,它以人类可读的文本形式存储结构化信息。然而,如何高效、准确地解析XML...

    dom4j解析xml文件代码示例

    在本示例中,我们将深入探讨如何使用DOM4J解析XML文件,以`CacheInit.java`作为我们的核心代码示例,并参考`emailTemplateConfig.xml`作为实际操作的对象。 首先,让我们了解XML(eXtensible Markup Language)。...

    用dom4j解析xml文件

    本篇文章将深入探讨如何使用DOM4J来解析XML文件,以及通过示例代码来展示其基本操作。 首先,我们需要理解DOM4J的工作原理。DOM4J采用的是DOM(Document Object Model)模型,它将整个XML文档加载到内存中形成一棵...

    dom4j 解析写入xml

    1、xml文档解析 2、 dom4j解析xml 3、实现xml文件解析 xml字符串解析 xml MAP键值对解析 4、实现xml写入与生成文件

    java dom4j解析xml

    Java DOM4J解析XML是一种常见的处理XML文档的技术,它提供了灵活且高效的API,使得开发者能够方便地读取、写入、修改以及操作XML文件。DOM4J是Java中一个非常强大的XML处理库,它结合了DOM、SAX和JDOM的优点,同时也...

    dom4j 解析(读取) xml 节点数据

    在本教程中,我们将深入探讨如何使用DOM4J解析(读取)XML节点数据,不受XML层级的限制。 首先,确保你已经下载了必要的依赖,即DOM4J库。通常,这将是一个名为`dom4j-x.x.x.jar`的文件,其中x.x.x是DOM4J的版本号...

    使用dom4j 和本地dom 解析xml 文件

    在压缩包文件"复件 dom"中,可能包含了示例代码或教程,用于演示如何使用DOM4J和本地DOM解析XML文件。通过查看这些文件,你可以更深入地了解两种方法的具体实现,并在实际项目中选择合适的方式处理XML数据。 总结来...

    使用dom4j解析XML

    【使用dom4j解析XML】 dom4j是一个强大的开源XML框架,它提供了处理XML文档的各种功能,包括解析、创建、修改等。相比W3C DOM API,dom4j的优势在于其内置的XPath支持,允许更方便地定位和操作XML文档中的节点。 *...

    读写超大类xml文件,使用dom4j读写xml文件的工具类

    基于dom4j的读写xml文件的工具包。封装了dom4j操作xml文档的常和方法。 支持两种读写方法。1:针对小文件的读取整个文档,2:针对大文件的,逐行读取。读到几百M文件毫无压力。

    dom4j解析xml,连接oracle数据库

    在本实例中,我们将深入探讨如何使用DOM4J解析XML,并利用这些数据连接Oracle数据库进行数据操作。 首先,让我们了解DOM4J的基本用法。DOM4J的主要类包括`Document`、`Element`、`Attribute`和`Namespace`。`...

    dom4j解析xml实例

    **DOM4J解析XML实例详解** 在Java编程中,处理XML文档是一项常见的任务。DOM4J是一个非常流行的、强大的Java XML API,它提供了灵活且高效的方式来解析、创建、修改XML文档。本文将深入探讨如何使用DOM4J进行XML...

    DOM4J 解析XML

    **DOM4J解析XML** DOM4J是一个强大的Java库,专门用于处理XML文档。它提供了灵活、高效且功能丰富的API,使得XML的读取、创建、修改和查询变得简单易行。DOM4J的主要特点包括对XPath的支持、事件驱动的解析、以及与...

    dom4j 解析xml实例

    在这个实例中,我们将深入探讨如何使用DOM4J解析XML文件,并通过`Dom4jTest1.java`这个示例程序来理解其工作原理。 首先,我们需要了解XML(Extensible Markup Language)是一种标记语言,常用于存储和传输数据。...

    dom4j解析xml

    ### DOM4J解析XML知识点详解 #### 一、DOM4J简介 DOM4J是一个Java库,用于处理XML文档。它的设计目标是为了提供一个简单、易于使用的API来处理XML文件,同时保持性能上的优势。与Java标准库中的DOM实现相比,DOM4J...

Global site tag (gtag.js) - Google Analytics