Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 JAXB 将我的一个实体编组为:
<User id="blabla">asd,123</User>
在接收端,有一些遗留代码不接受带双引号的 xml 属性,只接受单引号。所以它无法解析我的xml。
是否可以将我的实体编组为:
<User id='blabla'>asd,123</User>
属性id用单引号而不是双引号括起来?
id