xストリーム
次の XML コードがある場合:
<xml>
<version>1.1</version>
<url>http://www.google.nl</url>
</xml>
そして、私はJavaコードでこれを読んで、すべて正常に動作しますが、XMLが次のように変更された場合:
<xml>
<test>test</test>
<version>1.1</version>
<url>http://www.google.nl</url>
</xml>
エラーが出ますが、プログラムが停止しないようにしたい、フィールドテストを使用しないでください。プログラムを停止せずにこの例外を処理する方法はありますか?
Exception in thread "main" com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter$UnknownFieldExce ption: No such field Version.iets
---- Debugging information ----
field : iets
class : Version
required-type : Version
converter-type : com.thoughtworks.xstream.converters.reflection.ReflectionConverter
path : /Version/iets
line number : 1
version : null
-------------------------------