考虑这个 C# 代码:
[XmlRoot("RootElementName")]
public class GetReportStatusResponse
{
....
}
此代码允许我将此类表示为<RootElementName>
而不是<GetReportStatusResponse>
在序列化为 XML 时。
Java有等价物吗?
考虑这个 C# 代码:
[XmlRoot("RootElementName")]
public class GetReportStatusResponse
{
....
}
此代码允许我将此类表示为<RootElementName>
而不是<GetReportStatusResponse>
在序列化为 XML 时。
Java有等价物吗?