码迷,mamicode.com
首页 > 编程语言 > 详细

xml解析工具mashaller javaee自带解析类

时间:2017-10-03 16:28:33      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:cape   turn   cap   res   return   character   转义   log   ret   

1.怎样去掉Marshaller的格式化?

  1. JAXBContext context = JAXBContext.newInstance(Entity.class);  
  2.             Marshaller marshaller = context.createMarshaller();  
  3.             // xml格式  
  4.             marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);  
  5.             // 去掉生成xml的默认报文头  
  6.             marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);  
  7.             // 不进行转义字符的处理  
  8.             marshaller.setProperty(CharacterEscapeHandler.class.getName(), new CharacterEscapeHandler() {  
  9.                 public void escape(char[] ch, int start,int length, boolean isAttVal, Writer writer) throws IOException {  
  10.                     writer.write(ch, start, length);  
  11.                 }  
  12.             });  
  13.             StringWriter sw = new StringWriter();  
  14.             marshaller.marshal(entity, sw);  
  15.             return sw.toString();  
  16.         } catch (JAXBException e) {  
  17.             log.error("", e);  
  18.         }  

 

2.xml就像json解析一样,正常不过,是很正常的序列化格式。

 

xml解析工具mashaller javaee自带解析类

标签:cape   turn   cap   res   return   character   转义   log   ret   

原文地址:http://www.cnblogs.com/panxuejun/p/7623865.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!