1

以下は私のJavaクラスです

public class CRM
{

    private String phone[];
    private String email;
    public String[] getPhone()
    {
            return phone;
    }

    public void setPhone(String[] phone)
    {
            this.phone = phone;
    }

    public String getEmail()
    {
            return email;
    }

    public void setEmail(String email)
    {
            this.email = email;
    }

}

以下は私のXMLです。

<Crm>
    <Phone>123456789</Phone>
    <email>a@a.com</email>
</Crm>

以下は、私が取得しているスタック トレースです。

Exception in thread "main" com.thoughtworks.xstream.converters.ConversionException:     array element type mismatch : array element type mismatch
---- Debugging information ----
message             : array element type mismatch
cause-exception     : java.lang.IllegalArgumentException
cause-message       : array element type mismatch
class               : [Ljava.lang.String;
required-type       : [Ljava.lang.String;
converter-type      : com.thoughtworks.xstream.converters.collections.ArrayConverter
path                : /crm/phone
line number         : 4
class[1]            : com.CRM
converter-type[1]   : com.thoughtworks.xstream.converters.reflection.ReflectionConverter
version             : null
-------------------------------
at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:79)
at com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)
at com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.unmarshallField(AbstractReflectionConverter.java:355)
at com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.doUnmarshal(AbstractReflectionConverter.java:306)
at com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.unmarshal(AbstractReflectionConverter.java:234)
at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72)
at com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65)
at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)
at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50)
at com.thoughtworks.xstream.core.TreeUnmarshaller.start(TreeUnmarshaller.java:134)
at com.thoughtworks.xstream.core.AbstractTreeMarshallingStrategy.unmarshal(AbstractTreeMarshallingStrategy.java:32)
at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1052)
at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1036)
at com.thoughtworks.xstream.XStream.fromXML(XStream.java:912)
at com.thoughtworks.xstream.XStream.fromXML(XStream.java:903)
at com.Parser.main(Parser.java:29)
Caused by: java.lang.IllegalArgumentException: array element type mismatch
at java.lang.reflect.Array.set(Native Method)
at com.thoughtworks.xstream.converters.collections.ArrayConverter.unmarshal(ArrayConverter.java:65)
at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72)
... 16 more

私は何かを見逃していますか、それとも根本的に間違っていますか?

xstream-1.4.2.jar と Java 1.6 を使用しています。

私は常にxmlをJavaオブジェクトに変換しようとしています。

4

1 に答える 1

1

XStream をインスタンス化するために使用するコードを見ないと、100% 確実とは言えませんが、問題は、xstream が文字列の配列を期待している場所で、XML で文字列を提供しているためのようです。

簡単な修正の 1 つは、次の行に沿って xml ファイルを変更することです。

<Crm>
    <phone>
        <string>123456789</string>
    </phone>
    <email>a@a.com</email>
 </Crm>

別のオプションは、xstream を微調整して暗黙の arrayを定義し、クラスのエイリアスも定義することです。String

XStream xstream = new XStream();
xstream.alias("Crm", CRM.class);
xstream.addImplicitArray(CRM.class, "phone");
xstream.alias("phone", String.class);

これにより、次の XML を CRM インスタンスに解析できます。

<Crm>
    <phone>12345</phone>
    <phone>123456</phone>
    <phone>12345678</phone>
    <email>a@a.com</email>
</Crm>
于 2012-08-31T09:18:49.667 に答える