我正在 android 中解析 xml,我想删除所有元素上的命名空间前缀。例如在下面的 xml 中,我想删除前缀“ns4”
<ns4:profiles >
<ns4:list-users>
<ns4:user>
</ns4:user>
<ns4:user>
</ns4:user>
</ns4:list-users>
</ns4:profiles>
如何删除前缀?
我正在 android 中解析 xml,我想删除所有元素上的命名空间前缀。例如在下面的 xml 中,我想删除前缀“ns4”
<ns4:profiles >
<ns4:list-users>
<ns4:user>
</ns4:user>
<ns4:user>
</ns4:user>
</ns4:list-users>
</ns4:profiles>
如何删除前缀?