我目前正在使用xmlserialiser来输出类似下面的内容
<Node1>
<Child2 attr1="abc">
<Child3 attr2="xyz">
<Node1>
我有一个这样的字符串:
String stringAttribute = "testAttribute='testAttributeValue'";
有没有办法使用xmlserialiser将字符串插入节点,例如
<Node1>
<Child2 attr1="abc" testAttribute='testAttributeValue'>
<Child3 attr2="xyz">
<Node1>
由于
标记