根据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,如需转载请自行联系原作者
相关文章
|
1月前
|
数据采集 存储 JavaScript
自动化数据处理:使用Selenium与Excel打造的数据爬取管道
本文介绍了一种使用Selenium和Excel结合代理IP技术从WIPO品牌数据库(branddb.wipo.int)自动化爬取专利信息的方法。通过Selenium模拟用户操作,处理JavaScript动态加载页面,利用代理IP避免IP封禁,确保数据爬取稳定性和隐私性。爬取的数据将存储在Excel中,便于后续分析。此外,文章还详细介绍了Selenium的基本设置、代理IP配置及使用技巧,并探讨了未来可能采用的更多防反爬策略,以提升爬虫效率和稳定性。
|
2月前
|
XML 存储 JSON
Twaver-HTML5基础学习(19)数据容器(2)_数据序列化_XML、Json
本文介绍了Twaver HTML5中的数据序列化,包括XML和JSON格式的序列化与反序列化方法。文章通过示例代码展示了如何将DataBox中的数据序列化为XML和JSON字符串,以及如何从这些字符串中反序列化数据,重建DataBox中的对象。此外,还提到了用户自定义属性的序列化注册方法。
45 1
|
1月前
|
数据处理 Python
Python实用记录(十):获取excel数据并通过列表的形式保存为txt文档、xlsx文档、csv文档
这篇文章介绍了如何使用Python读取Excel文件中的数据,处理后将其保存为txt、xlsx和csv格式的文件。
45 3
Python实用记录(十):获取excel数据并通过列表的形式保存为txt文档、xlsx文档、csv文档
|
1月前
|
easyexcel Java UED
SpringBoot中大量数据导出方案:使用EasyExcel并行导出多个excel文件并压缩zip后下载
在SpringBoot环境中,为了优化大量数据的Excel导出体验,可采用异步方式处理。具体做法是将数据拆分后利用`CompletableFuture`与`ThreadPoolTaskExecutor`并行导出,并使用EasyExcel生成多个Excel文件,最终将其压缩成ZIP文件供下载。此方案提升了导出效率,改善了用户体验。代码示例展示了如何实现这一过程,包括多线程处理、模板导出及资源清理等关键步骤。
|
1月前
|
XML Web App开发 数据格式
HTML 页面显示 XML 数据
10月更文挑战第2天
|
1月前
|
XML JSON 前端开发
C#使用HttpClient四种请求数据格式:json、表单数据、文件上传、xml格式
C#使用HttpClient四种请求数据格式:json、表单数据、文件上传、xml格式
352 0
|
3月前
|
关系型数据库 MySQL Shell
不通过navicat工具怎么把查询数据导出到excel表中
不通过navicat工具怎么把查询数据导出到excel表中
44 0
|
2月前
|
数据采集 存储 数据挖掘
使用Python读取Excel数据
本文介绍了如何使用Python的`pandas`库读取和操作Excel文件。首先,需要安装`pandas`和`openpyxl`库。接着,通过`read_excel`函数读取Excel数据,并展示了读取特定工作表、查看数据以及计算平均值等操作。此外,还介绍了选择特定列、筛选数据和数据清洗等常用操作。`pandas`是一个强大且易用的工具,适用于日常数据处理工作。
|
3月前
|
SQL JSON 关系型数据库
n种方式教你用python读写excel等数据文件
n种方式教你用python读写excel等数据文件
|
3月前
|
存储 Java Apache

热门文章

最新文章

相关课程

更多