本文介绍了使用apache xmlbeans将名称空间定义添加到xml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要为元素添加名称空间定义,因为当使用apache xmlbean生成xml时不会添加元素.如何使用xmlbeans API做到这一点?
I need to add namespace defintion to an element since its not getting added when when xml is generated using apache xmlbean. How do I acheieve this using xmlbeans API?
推荐答案
我找到了问题的答案.就是这样.
I have found answer to the problem.Here's how it is.
XmlCursor cursor= targetObject.newCursor();
cursor.toNextToken();
cursor.insertNamespace("A", "namespace1");
//For example
cursor.insertNamespace("xsi", "http://www.w3.org/2001/XMLSchema-instance");
cursor.dispose();
这篇关于使用apache xmlbeans将名称空间定义添加到xml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!