Java XML JAXB Serialize serialize(T object, Class objectClass, OutputStream resultStream)

Here you can find the source of serialize(T object, Class objectClass, OutputStream resultStream)

Description

serialize

License

Apache License

Declaration

@Deprecated
    public static <T> void serialize(T object, Class<T> objectClass, OutputStream resultStream)
            throws JAXBException 

Method Source Code

//package com.java2s;
/**//from  w ww.  j av  a2 s.c o m
 * Copyright 2014 deib-polimi
 * Contact: deib-polimi <marco.miglierina@polimi.it>
 *
 *    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.ByteArrayOutputStream;

import java.io.OutputStream;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;

public class Main {
    @Deprecated
    public static <T> void serialize(T object, Class<T> objectClass, OutputStream resultStream)
            throws JAXBException {
        serialize(object, resultStream);
    }

    @Deprecated
    public static <T> void serialize(T object, Class<T> objectClass, OutputStream resultStream,
            String schemaLocation) throws JAXBException {
        serialize(object, resultStream, schemaLocation);
    }

    public static <T> void serialize(T object, OutputStream resultStream) throws JAXBException {
        JAXBContext jaxbContext = JAXBContext.newInstance(object.getClass());
        Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
        jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        jaxbMarshaller.marshal(object, resultStream);
    }

    public static <T> void serialize(T object, OutputStream resultStream, String schemaLocation)
            throws JAXBException {
        JAXBContext jaxbContext = JAXBContext.newInstance(object.getClass());
        Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
        jaxbMarshaller.setProperty(Marshaller.JAXB_SCHEMA_LOCATION, schemaLocation);
        jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        jaxbMarshaller.marshal(object, resultStream);
    }

    public static <T> String serialize(T object) throws JAXBException {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        serialize(object, outputStream);
        return outputStream.toString();
    }
}

Related

  1. serialize(Object o, OutputStream os, Boolean format)
  2. serialize(Object o, OutputStream os, Boolean format)
  3. serialize(Object obj)
  4. serialize(Object obj)
  5. serialize(Object object, Class clazz, String filename)
  6. serialize(T object, Path path)
  7. serializeFile(String path, Object o)
  8. serializeToFile(Class clazz, T object, String outputFile)
  9. serializeToSTD(Object obj)