1

考虑这个 C# 代码:

[XmlRoot("RootElementName")]
public class GetReportStatusResponse
{
    ....
}

此代码允许我将此类表示为<RootElementName>而不是<GetReportStatusResponse>在序列化为 XML 时。

Java有等价物吗?

4

2 回答 2

3

是的,它被称为

@XmlRootElement(name="RootElementName")
public class GetReportStatusResponse {
  //...
}
于 2012-11-09T15:35:24.223 回答
1

你可以在这里查看JAXB,它会支持你

于 2012-11-09T15:37:05.080 回答