私のプロジェクトでは、JaxB
オブジェクトごとに xml ファイルを生成しました。JAXB
もう一度、オブジェクトとして非整列化したいと思います。非整列化しようとすると、classcastException がスローされます。
私が書いたクラスを見つけてください:
public class ReservationTest1 {
public static void main(String []args) throws IOException, JAXBException
{
JAXBContext jaxbContext = JAXBContext.newInstance(com.hyatt.Jaxb.makeReservation.request.OTAHotelResRQ.class);
Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
@SuppressWarnings("unchecked")
JAXBElement bookingElement = (JAXBElement) unmarshaller.unmarshal(
new FileInputStream("D://myproject//Reservation.xml"));
System.out.println(bookingElement.getValue());
}
}
解決に役立つ情報を教えてください。