使用Java代码进行DOM处理后,XML属性顺序正在发生变化

时间:2017-09-11 04:43:34

标签: java xml

我试图通过更改某些属性值来读取XML并写入另一个XML当通过标准DOM处理XML时,属性顺序正在发生变化。 在这里,我试图更改'staff'元素的'id'属性值。

输入xml:

android:protectionLevel="signature"

输出xml:

<permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" android:protectionLevel="signature"/>

期望输出xml:

<permission android:description="string resource"
            android:icon="drawable resource"
            android:label="string resource"
            android:name="string"
            android:permissionGroup="string"
            android:protectionLevel=["normal" | "dangerous" |
                                     "signature" | "signatureOrSystem"] />

有人可以帮助解决源代码问题。 等待回复。

0 个答案:

没有答案