Java XML JAXB Unmarshaller unmarshal(InputStream in, Class... boundClasses)

Here you can find the source of unmarshal(InputStream in, Class... boundClasses)

Description

unmarshal

License

Apache License

Declaration

public static <T> T unmarshal(InputStream in, Class... boundClasses) 

Method Source Code


//package com.java2s;
/*//  w  w w  . j av  a2  s . co  m
 * Copyright 2009-2016 Andrey Grigorov
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

import java.io.InputStream;

import javax.xml.bind.JAXBContext;

import javax.xml.bind.Unmarshaller;

public class Main {
    public static <T> T unmarshal(InputStream in, Class... boundClasses) {
        try {
            Unmarshaller u = JAXBContext.newInstance(boundClasses).createUnmarshaller();
            return (T) u.unmarshal(in);
        } catch (Exception ex) {
        }
        return null;
    }
}

Related

  1. unmarshal(final Class clazz, String json)
  2. unmarshal(final String xml, Class clazz, InputStream inputSchema)
  3. unmarshal(final String xml, final Class clazz)
  4. unmarshal(InputSource inputSource, Class clazz)
  5. unmarshal(InputStream content, Class expectedType)
  6. unmarshal(InputStream inputStream, Class entityClass)
  7. unmarshal(InputStream inputStream, Class type)
  8. unmarshal(InputStream is, Class clazz)
  9. unmarshal(InputStream stream, Class clazz)