java 物件與xml相互轉換
https://blog.csdn.net/u012881904/article/details/65448822
http://www.uziot.com/article/1396
public static void toXml(XmlExportOutPut xmlExportOutPut, FileOutputStream fileOutputStream) throws IOException{ String dec = getDeclaration(); byte[] bytesOfDec = dec.getBytes("UTF-8"); fileOutputStream.write(bytesOfDec); XStream stream =new XStream(); stream.alias("config",XmlExportOutPut.class); stream.alias("section", XmlPersonOutput.class); stream.aliasAttribute(XmlPersonOutput.class,"id","id"); stream.aliasAttribute(XmlPersonOutput.class,"name","name"); stream.aliasAttribute(XmlPersonOutput.class,"sex","sex"); stream.aliasAttribute(XmlPersonOutput.class,"tel","tel"); stream.aliasAttribute(XmlPersonOutput.class,"cardid","cardid"); stream.aliasAttribute(XmlPersonOutput.class,"cardtype","cardtype"); stream.aliasAttribute(XmlPersonOutput.class,"nationality","nationality"); stream.aliasAttribute(XmlPersonOutput.class,"age","age"); stream.aliasAttribute(XmlPersonOutput.class,"picpath","picpath"); stream.aliasAttribute(XmlPersonOutput.class,"ex","ex"); stream.addImplicitArray(XmlExportOutPut.class,"xmlPersonOutputs"); stream.toXML(xmlExportOutPut,fileOutputStream); }
相關文章
- xml與陣列的相互轉換——phpXML陣列PHP
- jQuery 物件 與 原生 DOM 物件 相互轉換jQuery物件
- Java學習--xml文字轉換成Java物件JavaXML物件
- java 字串與檔案相互轉換Java字串
- UIImage與Iplimage相互轉換UI
- DataTable與List相互轉換
- SDOM與QDOM相互轉換
- PostgreSQL中將物件oid和物件名相互轉換SQL物件
- JS實現JSON物件與URL引數的相互轉換JSON物件
- string與數字相互轉換
- JSON字串與HashMap相互轉換JSON字串HashMap
- 陣列與字串方法與相互轉換陣列字串
- string與char陣列相互轉換陣列
- pandas中dataframe與dict相互轉換
- simplexml_load_string 將xml轉換成物件XML物件
- jxcel - 好用的Excel與Java物件轉換工具ExcelJava物件
- mapstruct解放Java物件轉換StructJava物件
- Java物件轉換成MapJava物件
- Java:List集合&Integer物件&int[]陣列相互轉化Java物件陣列
- 旋轉矩陣與尤拉角的相互轉換矩陣
- 塊級元素與內聯元素相互轉換
- JavaScript陣列與字串相互轉換 join、splitJavaScript陣列字串
- mysql時間與字串之間相互轉換MySql字串
- Python字典格式與JSON格式的相互轉換PythonJSON
- js時間戳與日期格式的相互轉換JS時間戳
- json字串與物件互相轉換JSON字串物件
- android中String與InputStream之間的相互轉換方式Android
- c語言字串與整形,浮點數...相互轉換C語言字串
- Apple開發_NSImage與CIImage之間的相互轉換APP
- c++中string類物件和字元陣列之間的相互轉換C++物件字元陣列
- Hive日期、時間轉換:YYYY-MM-DD與YYYYMMDD;hh.mm.ss與hhmmss的相互轉換HiveHMM
- C 語言整數與字串的相互轉換介紹字串
- Blob實現與File DataURL canvas相互轉換示例詳解Canvas
- JavaScript全形和半形相互轉換JavaScript
- 在JavaScript中,DOM物件與jQuery物件的區別與轉換JavaScript物件jQuery
- Java中將XML轉換為PDF的兩種辦法JavaXML
- Java如何將Object轉換成指定Class物件JavaObject物件
- (C#)時間戳、DateTime相互轉換C#時間戳