Jibx - 如何使用值和属性解组/编组标签?
<stateData>
<MyTag name="voltage">12</Mytag>
<MyTag name="Fuel">72</Mytag>
</stateData>
对不起,伙计们,我不是故意偷懒的。好的,问题是:我有上面的 xml 块的 xml 结构,其中一些标签在标签表示法中同时具有值和属性(MyTag 的值为 12 并具有属性名称)。使用 Jibx 如何为这种情况创建绑定模式。显然,对于只有值的 xml 标签或没有标签值的属性来说是正常的,但是当你同时拥有这两个标签时,我不知道该怎么办。谢谢。
<stateData>
<MyTag name="voltage">12</Mytag>
<MyTag name="Fuel">72</Mytag>
</stateData>
Sorry Guys, I did not meant to be lazy. Ok Here is the question: I have xml structure with above block of xml which some tags has both value and attribute in tag notation( MyTag has value of 12 and has an attribute name). using Jibx how I can create binding schema for such case. Obviously for xml tags with only value or with attributes without tag value is normal, but when you have both of them I don't know what to do. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在绑定中使用
元素两次。一次使用attribute
一次,一次使用text
样式。例如 - 要将以下
StateData
类绑定到您想要的 XML......使用下面的绑定:
Use
<value/>
element twice in your binding. Once withattribute
and once withtext
styles.For example - to bind the following
StateData
class to the XML you want......use the binding below: