XMl转Map-map调用公共模板
效果
- <?xmlversion="1.0"encoding="utf-8"?>
- <SERVICE>
- <SERVICE_HEADER>
- <apple>苹果大苹果小苹果好吃的不得了</apple>
- </SERVICE_HEADER>
- <SERVICE_BODY>
- <INFORMATION>
- <USER>
- <NAME>姚明多大</NAME>
- <AGE>?</AGE>
- </USER>
- <USER>
- <NAME>姚明多高</NAME>
- <AGE>反正比你高</AGE>
- </USER>
- </INFORMATION>
- </SERVICE_BODY>
- </SERVICE>
测试代码
- package com.sunline.nfs.process;
- import java.io.BufferedReader;
- import java.io.File;
- import java.io.FileReader;
- import java.io.IOException;
- import java.io.StringWriter;
- import java.util.LinkedHashMap;
- import java.util.List;
- import java.util.Map;
- import java.util.Properties;
- import net.sf.json.JSONArray;
- import net.sf.json.JSONObject;
- import org.apache.velocity.Template;
- import org.apache.velocity.VelocityContext;
- import org.apache.velocity.app.Velocity;
- import org.apache.velocity.app.VelocityEngine;
- import org.dom4j.Attribute;
- import org.dom4j.Document;
- import org.dom4j.DocumentException;
- import org.dom4j.DocumentHelper;
- import org.dom4j.Element;
- import org.springframework.core.io.ClassPathResource;
- import org.springframework.core.io.Resource;
- public class velocityxml {
- static Map<String,Object> jsonMap = new LinkedHashMap<String,Object>();
- public static Map recursinMap(Map<String,Object> map){
- net.sf.json.JSONObject jObject = new net.sf.json.JSONObject();
- for(String key:map.keySet()){
- String str = map.get(key).toString();
- if(str.startsWith("{")){
- /*com.alibaba.fastjson.JSONObject jObject = JSON.parseObject(str);*/
- Map<String,Object> map2 = jObject.fromObject(str);
- if(!map.toString().endsWith(map2.toString()+"}")){
- int i = map.toString().indexOf(map2.toString())+;
- String value ="{" + map.toString().substring((i+map2.toString().length()),map.toString().length());
- map2.put(key, value);
- }
- return recursinMap(map2);
- }
- else{
- if(str.startsWith("[")){
- JSONArray tmpMaps = JSONArray.fromObject(str);
- jsonMap.put(key, tmpMaps);
- }
- else{
- jsonMap.put(key, str);
- }
- }
- }
- return jsonMap;
- }
- @SuppressWarnings("null")
- public static void main(String[] args) throws IOException{
- String filename = "partten.txt";
- String json = readJson(filename);
- json = xmlToJson(json);
- net.sf.json.JSONObject jObject = new net.sf.json.JSONObject();
- Map<String,Object> tmpmap = jObject.fromObject(json);
- Map<String,Object> map = recursinMap(tmpmap);
- //初始化参数
- Properties properties=new Properties();
- //设置velocity资源加载方式为class
- properties.setProperty("resource.loader", "class");
- //设置velocity资源加载方式为file时的处理类
- properties.setProperty("class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader");
- //实例化一个VelocityEngine对象
- VelocityEngine velocityEngine=new VelocityEngine(properties);
- //实例化一个VelocityContext
- VelocityContext context=new VelocityContext();
- for(Object key :jsonMap.keySet()){
- context.put((String)key, jsonMap.get(key));
- }
- //实例化一个StringWriter
- StringWriter writer=new StringWriter();
- velocityEngine.mergeTemplate("patternxml.txt", "gbk", context, writer);
- String str = writer.toString();
- str = str.replaceAll("\\s*", "");
- System.out.println(str);
- }
- public static String readJson(String filename){
- Resource resource =new ClassPathResource(filename);
- File file;
- try {
- file = resource.getFile();
- BufferedReader reader= new BufferedReader(new FileReader(file));
- String temp=null;
- String str="";
- while((temp=reader.readLine())!=null){
- str = str + temp;
- }
- return str;
- } catch (IOException e) {
- e.printStackTrace();
- }
- return null;
- }
- public static void dom4j2Json(Element element, JSONObject json) {
- // 如果是属性
- for (Object o : element.attributes()) {
- Attribute attr = (Attribute) o;
- if (!isEmpty(attr.getValue())) {
- json.put("@" + attr.getName(), attr.getValue());
- }
- }
- List<Element> chdEl = element.elements();
- if (chdEl.isEmpty() && !isEmpty(element.getText())) {// 如果没有子元素,只有一个值
- json.put(element.getName(), element.getText());
- }
- for (Element e : chdEl) {// 有子元素
- if (!e.elements().isEmpty()) {// 子元素也有子元素
- JSONObject chdjson = new JSONObject();
- dom4j2Json(e, chdjson);
- Object o = json.get(e.getName());
- if (o != null) {
- JSONArray jsona = null;
- if (o instanceof JSONObject) {// 如果此元素已存在,则转为jsonArray
- JSONObject jsono = (JSONObject) o;
- json.remove(e.getName());
- jsona = new JSONArray();
- jsona.add(jsono);
- jsona.add(chdjson);
- }
- if (o instanceof JSONArray) {
- jsona = (JSONArray) o;
- jsona.add(chdjson);
- }
- json.put(e.getName(), jsona);
- } else {
- if (!chdjson.isEmpty()) {
- json.put(e.getName(), chdjson);
- }
- }
- } else {// 子元素没有子元素
- for (Object o : element.attributes()) {
- Attribute attr = (Attribute) o;
- if (!isEmpty(attr.getValue())) {
- json.put("@" + attr.getName(), attr.getValue());
- }
- }
- if (!e.getText().isEmpty()) {
- json.put(e.getName(), e.getText());
- }
- }
- }
- }
- public static boolean isEmpty(String str) {
- if (str == null || str.trim().isEmpty() || "null".equals(str)) {
- return true;
- }
- return false;
- }
- public static String xmlToJson(String xml) {
- Document doc;
- try {
- doc = DocumentHelper.parseText(xml);
- JSONObject json = new JSONObject();
- dom4j2Json(doc.getRootElement(), json);
- return json.toString();
- } catch (DocumentException e) {
- e.printStackTrace();
- }
- return null;
- }
- }
模拟报文
- <?xml version="1.0" encoding="utf-8"?>
- <SERVICE>
- <SERVICE_HEADER>
- <apple>苹果大苹果小苹果好吃的不得了</apple>
- </SERVICE_HEADER>
- <SERVICE_BODY>
- <INFORMATION>
- <USER>
- <NAME>姚明多大</NAME>
- <AGE>?</AGE>
- </USER>
- <USER>
- <NAME>姚明多高</NAME>
- <AGE>反正比你高</AGE>
- </USER>
- </INFORMATION>
- </SERVICE_BODY>
- </SERVICE>
模板配置
- 根据需要自动配置
XMl转Map-map调用公共模板的更多相关文章
- 将多层级xml解析为Map
/** * 解析xml的工具类 * 1.将多层级xml解析为Map */ public class ParseXmlUtil { public static final String TAG = &q ...
- XML字符串转为Map集合
public class xmlToMapUtils { /** * xml字符串转为map集合 * @param xmlStr * @return */ public static Map<S ...
- Dom4j把xml转换成Map(固定格式)
/** * 可解析list * * @param fileName * @return * @throws Exception */ @SuppressWarnings("unchecked ...
- Dom4j把xml转换成Map(非固定格式)
将xml转换成Map,能够应对不用结构的xml,而不是只针对固定格式的xml.转换规则:1.主要是Map与List的互相嵌套2.同名称的节点会被装进List 示例: import java.util. ...
- java XML解析成Map
1.需要解析的文件.xml <?xml version="1.0" encoding="UTF-8"?> <request> <r ...
- 工具类--map 转成xml xml转成map
public class WxChatReq { /** * Map转换成XML * @param data * @return * @throws Exception */ public stati ...
- 笔记 freemark list标签迭代Map<Map<String,Object>集合排序问题
本博客是自己在学习和工作途中的积累与总结,仅供自己参考,也欢迎大家转载,转载时请注明出处. 工作中出现一个比较特殊的问题,在模板ftl文件中,一般用list迭代map 举例: 后台: // 传入的参数 ...
- 小程序公共模板template与公共js数据utils的引用实例
在小程序项目开发中,经常会遇到公共模板与公共js数据的调用,这里结合自己的项目为这一需求做一简单介绍 目录截图 现在是有一个评论版块需要在几个页面里共用 先将评论版块的wxml剔出来放在templat ...
- Angularjs调用公共方法与共享数据
这个问题场景是在使用ionic开发页面的过程中发现,多个页面对应的多个controller如何去调用公共方法,比如给ionic引入了toast插件,如何将这个插件的调用变成公共方法或者设置成工具类,因 ...
随机推荐
- Mybatis插件开发
前面几篇文章介绍了Mybtis中四个重要的对象,其中提到它们都是在Configuration中被创建的,我们一起看一下创建四大对象的方法,代码如下所示: public ParameterHandler ...
- 记一次Full GC问题的排查
今天看到监控平台显示项目的Full GC次数过多,查看了一下监控曲线,如下图,发现发生的时间点基本上都是在上午十点之后,到下午五点. 分析:考虑到业务形态,开始初步怀疑是访问人数增多引起的虚拟机内存不 ...
- 【代码笔记】iOS-NSJSONSerializationDemo
一,代码. - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. ...
- Js利用Canvas实现图片压缩
最近做的APP项目涉及到手机拍照上传图片,因为手机拍照的图片通常都比较大,所以上传的时候就会很慢.为此,需要对图片进行压缩处理来优化上传功能.以下是具体实现: /* * 图片压缩 * img 原始图片 ...
- 前端开发笔记(4)css基础(下)
标签定位 相对定位 相对定位是用来微调元素位置的,让元素相对于原来的位置进行调整. <head> <meta http-equiv="Content-Type" ...
- 01-01基于SHELL的数据分析
#!/usr/bin/env bash for year in /root/Downloads/data/all/* do echo -ne `basename $year .gz`"\t& ...
- FineBI表单如何更新
FineBI表单如何更新 1. 描述Cube单表更新,是指在某个业务包上面设置定时更新,在某个固定的时间点对某个的业务包中的特定表进行数据更新,部分更新分为两种,全量更新和增量更新,因而在更新策略上则 ...
- 安卓开发_浅谈ListView(ArrayAdapter数组适配器)
列表视图(ListView)以垂直的形式列出需要显示的列表项. 实现过程:新建适配器->添加数据源到适配器->视图加载适配器 在安卓中,有两种方法可以在屏幕中添加列表视图 1.直接用Lis ...
- 安卓开发环境配置之Windows+ADT+eclipse
安卓环境搭建之Windows+ADT+eclipse 要点: 1.安装JDK 2.安装Android SDK 3.安装eclipse 4.安装ADT 5.安装调试环境 正文: 1.安装JDK 1.1准 ...
- Python 开发者在迁移到 Go(lang) 时需要知道哪些事?
[编者按]本文最早由 Repustate 发布,主要介绍将代码迁移至 Go(lang) 时的注意事项.文章系国内 ITOM 管理平台 OneAPM 编译呈现,以下为正文. 这是一篇讲述将大块 Pyth ...