jixb 使用
程序员文章站
2022-01-20 10:05:29
...
1.unmarshal from file
"input.xml" -> Object
// unmarshal customer information from file
IBindingFactory bfact = BindingDirectory.getFactory(Order.class);
IUnmarshallingContext uctx = bfact.createUnmarshallingContext();
FileInputStream in = new FileInputStream("input.xml");
Order order = (Order)uctx.unmarshalDocument(in, null);
2.marshal object to file
Object -> "out.xml"
// marshal object back out to file (with nice indentation, as UTF-8)
IMarshallingContext mctx = bfact.createMarshallingContext();
mctx.setIndent(2);
FileOutputStream out = new FileOutputStream("out.xml");
mctx.setOutput(out, null);
mctx.marshalDocument(order);
上一篇: Jupyter简明教程
下一篇: 第5讲 --删除指定id的单个对象
推荐阅读
-
PHP中使用Imagick读取pdf并生成png缩略图实例_php技巧
-
米家随手吸尘器好不好用 米家随手吸尘器使用体验
-
使用IDEA创建Web项目并发布到tomcat的操作方法
-
PHP使用NuSOAP调用Web服务的方法,phpnusoap调用web
-
华缔隆hdl 2000机票打印机安装使用的详细说明手册
-
教你如何使用Fireworks外发光特效消除图像边缘锯齿
-
简单了解PHP编程中数组的指针的使用_PHP
-
Sublime text 2/3 中 Package Control 的安装与使用方法,sublimepackage
-
使用vue2.0如何实现前端星星评分功能组件
-
你必须了解Selenium使用CSS定位总结