Here you can find the source of serializeToSTD(Object obj)
Parameter | Description |
---|---|
obj | a parameter |
Parameter | Description |
---|---|
JAXBException | an exception |
public static void serializeToSTD(Object obj) throws JAXBException
//package com.java2s; /*// www. j a v a 2s. c om * Copyright 2015, Supreme Court Republic of Slovenia * * Licensed under the EUPL, Version 1.1 or ? as soon they will be approved by the European * Commission - subsequent versions of the EUPL (the "Licence"); You may not use this work except in * compliance with the Licence. You may obtain a copy of the Licence at: * * https://joinup.ec.europa.eu/software/page/eupl * * Unless required by applicable law or agreed to in writing, software distributed under the Licence * is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the Licence for the specific language governing permissions and limitations under * the Licence. */ import static java.lang.Boolean.TRUE; import static java.lang.System.out; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import javax.xml.bind.Marshaller; import static javax.xml.bind.Marshaller.JAXB_FRAGMENT; public class Main { /** * * @param obj * @throws JAXBException */ public static void serializeToSTD(Object obj) throws JAXBException { final Marshaller m = JAXBContext.newInstance(obj.getClass()).createMarshaller(); m.setProperty(JAXB_FRAGMENT, TRUE); m.marshal(obj, out); } }