本文实例讲述了java生成XML的方法。分享给大家供大家参考,具体如下:
下拉框的生成,我是通过javascript读取xml文件生成的。Xml文件是根据数据库生成的。Xml文件只相当于页面到数据库的一道缓存。这样利于性能。生成xml文件又是一件繁琐的事情。只好交给机器去做了。真正的情景是程序定期自动或人为手动触发程序生成xml。今天我单独把xml文件生成的功能剥离出来写了一个小程序。
具体的实现是,使用jxl.jar读取(我承认我很喜欢使用Execel写配置)的SQL语句。SQL要指明哪些是名称、哪些是代码、哪些是父级代码。Mybatis查询数据,拼装报文写入文件。这次写了一个jar包程序。运行前请自备jre。
核心代码:XmlCreateService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
package com.fitweber.service; import java.io.IOException; import java.io.InputStream; import java.util.HashMap; import java.util.List; import java.util.Map; import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; import com.fitweber.util.CommonUtils; import com.fitweber.util.ExecelUtils; /** * <pre> * XML文件生成器 * </pre> * @author wheatmark hajima11@163.com * @version 1.00.00 * <pre> * 修改记录 * 修改后版本: 修改人: 修改日期: 修改内容: * </pre> */ public class XmlCreateService { @SuppressWarnings ({ "rawtypes" , "unused" , "unchecked" }) public static void main(String[] argc){ String resource = "META-INF/conf/mybatis-config.xml" ; String root = "" ; InputStream inputStream; try { //拿到数据库连接 inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); SqlSession session = sqlSessionFactory.openSession(); //拿到查询参数 List requestList = ExecelUtils.readExecelSimple( "xmlmaker.xls" ); //定义变量 int i,j,listSize; String filename,sqlstament,temp;; HashMap requestMap = new HashMap(); Map map; StringBuffer buf = new StringBuffer(); for (Object l:requestList){ List list = (List)l; listSize = list.size(); filename =(String)list.get( 1 ); sqlstament =(String)list.get( 2 ); requestMap.put( "sql" , sqlstament); List result = session.selectList( "com.fitweber.dao.XmlCreateDao.xmlDataQuery" ,requestMap); for (Object r:result){ buf.append( "<option>" ); map=(Map)r; temp = (String) map.get( "DM" ); if (temp!= null ){ buf.append( "<dm>" +temp+ "</dm>" ); } temp = (String) map.get( "MC" ); if (temp!= null ){ buf.append( "<mc>" +temp+ "</mc>" ); } temp = (String) map.get( "PC" ); if (temp!= null ){ buf.append( "<pc>" +temp+ "</pc>" ); } temp = (String) map.get( "ITEM" ); if (temp!= null ){ buf.append( "<item>" +temp+ "</item>" ); } buf.append( "</option>" ); } CommonUtils.saveFile( null , (System.getProperty( "user.dir" )+ "\\xml\\" ).replace( "\\" , "/" )+filename, ( "<?xml version=\"1.0\" encoding=\"utf-8\" ?><root><select>" +buf.toString()+ "</select></root>" ), false ); buf.setLength( 0 ); } session.close(); } catch (IOException e) { e.printStackTrace(); } } } |
完整的源码在github维护,地址:https://github.com/ladykiller/xmlmaker。
完整实例代码点击此处本站下载。
希望本文所述对大家java程序设计有所帮助。