如何使用 jsonix 将自定义 xsi 命名空间添加到 XML 文件?我们希望实现以下目标:
<network xsi:schemaLocation="http://example.com/XMLSchema ../../../Example/schema/Example.xsd">
我们能得到的最好的东西是使用命名空间前缀:
<network xmlns:schemaLocation="http://example.com/XMLSchema ../../../Example/schema/Example.xsd">
谢谢!