使用 MOXy 将 JsonObject 属性映射到 XML
Mapping JsonObject property to XML with MOXy
我有以下class
@XmlRootElement(name = "Root")
class MyClass {
@XmlElement(name = "Entries")
JsonObject getProperty() { ... }
}
我想在编组后得到以下 XML 输出:
<Root>
<Entries>
<Entry>
<Name>Age</Name>
<Value>35</Value>
</Entry>
<Entry>
<Name>Email</Name>
<Value>test@gmail.com</Value>
</Entry>
</Entries>
</Root>
假设从 getProperty()
返回的 JSON 是:
{ "Age": 35, "Email": "test@gmail.com" }
我正在尝试创建一个助手 class XmlJsonEntry
@XmlAccessType(XmlAccessType.FIELD)
@XmlRootElement(name = "Entry")
class XmlJsonEntry {
@XmlElement
public String Name;
@XmlElement
public String Value;
}
并扩展 XmlAdapter
如下:
public static class JsonXmlAdapter extends XmlAdapter<XmlJsonEntry[], JsonObject>
{
@Override
public XmlJsonEntry[] marshal(JsonObject v) throws Exception
{
List<XmlJsonEntry> entries = new ArrayList<XmlJsonEntry>();
for (Entry<String,JsonElement> e : v.entrySet())
{
entries.add(new XmlJsonEntry(e.getKey(),e.getValue().toString()));
}
return entries.toArray(new XmlJsonEntry[entries.size()]);
}
@Override
public JsonObject unmarshal(XmlJsonEntry[] v) throws Exception
{ throw new Exception("Unmarshall not supported."); }
}
但这在编组期间抛出异常:
Trying to get value for instance variable [name] of type [java.lang.String] from the object [[Lmy.app.$XmlJsonEntry;]. The specified object is not an instance of the class or interface declaring the underlying field`
我如何让它工作?是否有更简单的方法可以实现此目的?
而不是:
public static class JsonXmlAdapter extends XmlAdapter<XmlJsonEntry[], JsonObject>
做:
public static class JsonXmlAdapter extends XmlAdapter<XmlJsonEntries, JsonObject>
然后 XmlJsonEntries
有一个类型为 List<XmlJsonEntry>
的映射 属性。
我有以下class
@XmlRootElement(name = "Root")
class MyClass {
@XmlElement(name = "Entries")
JsonObject getProperty() { ... }
}
我想在编组后得到以下 XML 输出:
<Root>
<Entries>
<Entry>
<Name>Age</Name>
<Value>35</Value>
</Entry>
<Entry>
<Name>Email</Name>
<Value>test@gmail.com</Value>
</Entry>
</Entries>
</Root>
假设从 getProperty()
返回的 JSON 是:
{ "Age": 35, "Email": "test@gmail.com" }
我正在尝试创建一个助手 class XmlJsonEntry
@XmlAccessType(XmlAccessType.FIELD)
@XmlRootElement(name = "Entry")
class XmlJsonEntry {
@XmlElement
public String Name;
@XmlElement
public String Value;
}
并扩展 XmlAdapter
如下:
public static class JsonXmlAdapter extends XmlAdapter<XmlJsonEntry[], JsonObject>
{
@Override
public XmlJsonEntry[] marshal(JsonObject v) throws Exception
{
List<XmlJsonEntry> entries = new ArrayList<XmlJsonEntry>();
for (Entry<String,JsonElement> e : v.entrySet())
{
entries.add(new XmlJsonEntry(e.getKey(),e.getValue().toString()));
}
return entries.toArray(new XmlJsonEntry[entries.size()]);
}
@Override
public JsonObject unmarshal(XmlJsonEntry[] v) throws Exception
{ throw new Exception("Unmarshall not supported."); }
}
但这在编组期间抛出异常:
Trying to get value for instance variable [name] of type [java.lang.String] from the object [[Lmy.app.$XmlJsonEntry;]. The specified object is not an instance of the class or interface declaring the underlying field`
我如何让它工作?是否有更简单的方法可以实现此目的?
而不是:
public static class JsonXmlAdapter extends XmlAdapter<XmlJsonEntry[], JsonObject>
做:
public static class JsonXmlAdapter extends XmlAdapter<XmlJsonEntries, JsonObject>
然后 XmlJsonEntries
有一个类型为 List<XmlJsonEntry>
的映射 属性。