英文:
Java - XmlRootElement annotation
问题
我有一个带有@XmlRootElement注释的类
@XmlRootElement
class Point {
int x;
int y;
Point(int _x, int _y) {x=_x;y=_y;}
}
是否有一个函数可以生成类似以下的相对xml?
<point>
<x> 3
<y> 5
</point>
谢谢
英文:
I've a class with @XmlRootElement¸annotation
@XmlRootElement
class Point {
int x;
int y;
Point(int _x,int _y) {x=_x;y=_y;}
}
Is there a function that produce the relative xml like?
<point>
<x> 3
<y> 5
</point>
Thanks
答案1
得分: 1
没有一个 'function' 将您的 Java 类与 XML 绑定在一起。在 Java SE 中,是 JAXB API 根据使用 @XmlRootElement
注解进行标注的 Java 类生成 XML。请阅读详细信息 这里。
英文:
There is no 'function' that binds your java class with an XML. It is the JAXB API in Java SE that generates XML out of the java class annotated with @XmlRootElement
annotation. Please read the details here.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论