根据XML配置规则导入Excel数据(二)定义XML规则对象

简介:
规则设计到三个对象。工具将XML 分三级解析。
 
              类
                      对应
xml节点
作用                                                                    
 BeansSpecification  beans    表示一个根节点,包含所有Bean定义信息。
 BeanSpecification  bean  代表bean的配置信息,包含多个propertys
 PropertySpecification  property  代表bean 的属性配置信息
 
BeansSpecification.java
package com.ivfly.xlsbean; 


import java.io.InputStream; 
import java.util.ArrayList; 
import java.util.List; 

/** 
* 1.去掉了父类 
* 2.添加单例 
*                 根元素 
*/
 
public  class BeansSpecification{ 
   private  static BeansSpecification instance=  null
   public  static BeansSpecification getInstance(InputStream xmlStream){ 
     if(instance==  null){ 
      instance = BeansSpecificationUtil.getBeans(xmlStream); 
    } 
     return instance; 
  } 
   /** 
    * 跟元素下所有的beans 
    */
 
   private List<BeanSpecification> beans =  new ArrayList<BeanSpecification>(); 

   public List<BeanSpecification> getBeans() { 
     return  this.beans; 
  } 

   public  void addBean(BeanSpecification field) { 
     this.beans.add(field); 
  } 

   /** 
    * 根据文件名和类名查找 
    * @param fileName 
    * @return 
    */
 
   public BeanSpecification getBean(String fileName) { 
     for (BeanSpecification bean : beans) { 
       if (FileUtil.wildcard(bean.getFileName(), fileName)||bean.getClassName().equals(fileName)) { 
         return bean; 
      } 
    } 
     return  null
  } 
   public BeanSpecification getBeanByClassName(String className) { 
     for (BeanSpecification bean : beans) { 
       if (bean.getClassName().equals(className)) { 
         return bean; 
      } 
    } 
     return  null
  } 


 
BeanSpecification.java
package com.ivfly.xlsbean; 


import java.util.ArrayList; 
import java.util.HashMap; 
import java.util.LinkedHashMap; 
import java.util.List; 
import java.util.Map; 

import org.apache.commons.beanutils.PropertyUtils; 


/** 
*    
*                 描述实体属性 
*/
 
public  class BeanSpecification{ 

   private Map<String,PropertySpecification> properties =  new HashMap<String,PropertySpecification>(); 

   /** 
    * 类路径名 
    */
 
   private String className; 
   /** 
    * 描述对应Class的properties 
    */
 
   private Map    describer; 
   /** 
    * 文件名 
    */
 
   private String fileName; 
   /** 
    * excel中数据记录的起点行数 
    */
 
   private Integer from; 

   /** 
    * 列标题所在行 
    */
 
   private Integer head; 

   /** 
    * 类属性和excel列名对应键值对 
    */
 
   private Map<String, String> nv= new LinkedHashMap<String,String>(); 
    
   /** 
    * 类属性和excel列名对应键值对,反过来 
    */
 
   private Map<String, String> vn= new HashMap<String,String>(); 
    
   private List<String> propertyList =  new ArrayList<String>(); 

   public  void addProperty(PropertySpecification field) { 
     this.nv.put(field.getName(), field.getValue()); 
     this.vn.put(field.getValue(),field.getName()); 
     this.properties.put(field.getName(), field); 
    propertyList.add(field.getName()); 
  } 

    
   public List<String> getPropertyList() { 
     return propertyList; 
  } 


   public String getClassName() { 
     return  this.className; 
  } 

   public  void setClassName(String classname) { 
     this.className = classname; 
  } 

   public Map<String,PropertySpecification> getProperty() { 
     return properties; 
  } 

   public String getPropertyNameByValue(String value) { 
     return vn.get(value); 
  } 
    
   public  boolean nullable(String propertyName){ 
     if( this.properties.containsKey(propertyName)){ 
       return  this.properties.get(propertyName).isNullable(); 
    } else  return  false
  } 

   public  void setProperty(Map<String,PropertySpecification> property) { 
     this.properties = property; 
  } 

   public String getFileName() { 
     return fileName; 
  } 

   public  void setFileName(String fileName) { 
     this.fileName = fileName; 
  } 

   public Integer getFrom() { 
     return from; 
  } 

   public  void setFrom(Integer from) { 
     this.from = from; 
  } 

   public Integer getHead() { 
     return head; 
  } 

   public  void setHead(Integer head) { 
     this.head = head; 
  } 

   public Map<String, String> getNv() { 
     return nv; 
  } 

   public  void setNv(Map<String, String> nv) { 
     this.nv = nv; 
  } 


  @SuppressWarnings( "unchecked"
   public Map getDescriber() { 
    describer =  new HashMap(); 
     try { 
      Class cls = Class.forName( this.className); 
      Object bean = cls.newInstance(); 
      describer = PropertyUtils.describe(bean); 
    }  catch (Exception e) { 
      e.printStackTrace(); 
    } 
     return describer; 
  } 

    

 
PropertySpecification.java
package com.ivfly.xlsbean; 
/** 
*    
* 描述属性的映射 

*/
 
public  class PropertySpecification { 
   /** 
    * 顺序号 没有维护 
    */
 
   private  int    seq; 
   /** 
    * 格式 
    */
 
   private String formular; 
   /** 
    * 提示格式 
    */
 
   private String warringFormat; 
    
   private    String type; 
   /** 
    * 属性名 
    */
 
   private String name; 
    
   /** 
    * 列名 
    */
 
   private String value; 
    
   /** 
    * 是否可以为空 
    */
 
   private  boolean nullable= true
    
   private  int index; 

   public String getName() { 
     return name; 
  } 

   public  void setName(String name) { 
     this.name = name; 
  } 

   public String getValue() { 
     return value; 
  } 

   public  void setValue(String value) { 
     this.value = value; 
  } 

   public  int getIndex() { 
     return index; 
  } 

   public  void setIndex( int index) { 
     this.index = index; 
  } 
    
    
   public  boolean isNullable() { 
     return nullable; 
  } 

   public  void setNullable( boolean nullable) { 
     this.nullable = nullable; 
  } 

  @Override 
   public String toString() { 
     return  "name="+name+ ";value="+value+ ";seq="+seq+ ";type="+type+ ",nullable="+nullable; 
  } 

   public  int getSeq() { 
     return seq; 
  } 

   public  void setSeq( int seq) { 
     this.seq = seq; 
  } 

   public String getType() { 
     return type; 
  } 

   public  void setType(String type) { 
     this.type = type; 
  } 

   public String getFormular() { 
     return formular; 
  } 

   public  void setFormular(String formular) { 
     this.formular = formular; 
  } 

   public String getWarringFormat() { 
     return warringFormat; 
  } 

   public  void setWarringFormat(String warringFormat) { 
     this.warringFormat = warringFormat; 
  } 

 


本文转自 randy_shandong 51CTO博客,原文链接:http://blog.51cto.com/dba10g/756533,如需转载请自行联系原作者
相关文章
|
3月前
|
XML 存储 JSON
Twaver-HTML5基础学习(19)数据容器(2)_数据序列化_XML、Json
本文介绍了Twaver HTML5中的数据序列化,包括XML和JSON格式的序列化与反序列化方法。文章通过示例代码展示了如何将DataBox中的数据序列化为XML和JSON字符串,以及如何从这些字符串中反序列化数据,重建DataBox中的对象。此外,还提到了用户自定义属性的序列化注册方法。
51 1
|
4月前
|
XML 数据采集 存储
使用Java和XPath在XML文档中精准定位数据
在数据驱动的时代,从复杂结构中精确提取信息至关重要。XML被广泛用于数据存储与传输,而XPath则能高效地在这些文档中导航和提取数据。本文深入探讨如何使用Java和XPath精准定位XML文档中的数据,并通过小红书的实际案例进行分析。首先介绍了XML及其挑战,接着阐述了XPath的优势。然后,提出从大型XML文档中自动提取特定产品信息的需求,并通过代理IP技术、设置Cookie和User-Agent以及多线程技术来解决实际网络环境下的数据抓取问题。最后,提供了一个Java示例代码,演示如何集成这些技术以高效地从XML源中抓取数据。
182 7
使用Java和XPath在XML文档中精准定位数据
|
6天前
|
XML Java 数据格式
Spring容器Bean之XML配置方式
通过对以上内容的掌握,开发人员可以灵活地使用Spring的XML配置方式来管理应用程序的Bean,提高代码的模块化和可维护性。
35 6
|
1月前
|
前端开发
实现Excel文件和其他文件导出为压缩包,并导入
实现Excel文件和其他文件导出为压缩包,并导入
30 1
|
2月前
|
XML 存储 移动开发
|
3月前
|
XML Java 数据格式
Spring IOC—基于XML配置Bean的更多内容和细节(通俗易懂)
Spring 第二节内容补充 关于Bean配置的更多内容和细节 万字详解!
264 18
|
3月前
|
SQL C# 数据库
EPPlus库的安装和使用 C# 中 Excel的导入和导出
本文介绍了如何使用EPPlus库在C#中实现Excel的导入和导出功能。首先,通过NuGet包管理器安装EPPlus库,然后提供了将DataGridView数据导出到Excel的步骤和代码示例,包括将DataGridView转换为DataTable和使用EPPlus将DataTable导出为Excel文件。接着,介绍了如何将Excel数据导入到数据库中,包括读取Excel文件、解析数据、执行SQL插入操作。
EPPlus库的安装和使用 C# 中 Excel的导入和导出
|
3月前
|
XML Java 应用服务中间件
springMVC01,springMVC的执行流程【第一个springMVC例子(XML配置版本):HelloWorld】
通过一个HelloWorld实例,介绍了SpringMVC的基本概念、执行流程,并详细讲解了如何创建和配置第一个SpringMVC项目(基于XML)。
springMVC01,springMVC的执行流程【第一个springMVC例子(XML配置版本):HelloWorld】
|
2月前
|
XML 分布式计算 资源调度
大数据-02-Hadoop集群 XML配置 超详细 core-site.xml hdfs-site.xml 3节点云服务器 2C4G HDFS Yarn MapRedece(一)
大数据-02-Hadoop集群 XML配置 超详细 core-site.xml hdfs-site.xml 3节点云服务器 2C4G HDFS Yarn MapRedece(一)
183 5
|
2月前
|
XML 资源调度 网络协议
大数据-02-Hadoop集群 XML配置 超详细 core-site.xml hdfs-site.xml 3节点云服务器 2C4G HDFS Yarn MapRedece(二)
大数据-02-Hadoop集群 XML配置 超详细 core-site.xml hdfs-site.xml 3节点云服务器 2C4G HDFS Yarn MapRedece(二)
158 4