本文整理汇总了Java中javax.xml.bind.Marshaller类的典型用法代码示例。如果您正苦于以下问题:Java Marshaller类的具体用法?Java Marshaller怎么用?Java Marshaller使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Marshaller类属于javax.xml.bind包,在下文中一共展示了Marshaller类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: obj2xml
import javax.xml.bind.Marshaller; //导入依赖的package包/类
/**
* 对象转为xml字符串
*
* @param obj
* @param isFormat
* true即按标签自动换行,false即是一行的xml
* @param includeHead
* true则包含xm头声明信息,false则不包含
* @return
*/
public String obj2xml(Object obj, boolean isFormat, boolean includeHead) {
try (StringWriter writer = new StringWriter()) {
Marshaller m = MARSHALLERS.get(obj.getClass());
if (m == null) {
m = JAXBContext.newInstance(obj.getClass()).createMarshaller();
m.setProperty(Marshaller.JAXB_ENCODING, I18NConstants.DEFAULT_CHARSET);
}
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, isFormat);
m.setProperty(Marshaller.JAXB_FRAGMENT, !includeHead);// 是否省略xm头声明信息
m.marshal(obj, writer);
return writer.toString();
} catch (Exception e) {
throw new ZhhrException(e.getMessage(), e);
}
}
示例2: saveSaas
import javax.xml.bind.Marshaller; //导入依赖的package包/类
public static void saveSaas(Saas saas, FileObject file) throws IOException, JAXBException {
JAXBContext jc = JAXBContext.newInstance(SaasServices.class.getPackage().getName());
Marshaller marshaller = jc.createMarshaller();
JAXBElement<SaasServices> jbe = new JAXBElement<SaasServices>(QNAME_SAAS_SERVICES, SaasServices.class, saas.getDelegate());
OutputStream out = null;
FileLock lock = null;
try {
lock = file.lock();
out = file.getOutputStream(lock);
marshaller.marshal(jbe, out);
} finally {
if (out != null) {
out.close();
}
if (lock != null) {
lock.releaseLock();
}
}
}
示例3: save
import javax.xml.bind.Marshaller; //导入依赖的package包/类
/**
* Save.
*
* @param file2Save the file2 save
* @return true, if successful
*/
public boolean save(File file2Save) {
boolean saved = true;
try {
JAXBContext pc = JAXBContext.newInstance(this.getClass());
Marshaller pm = pc.createMarshaller();
pm.setProperty( Marshaller.JAXB_ENCODING, "UTF-8" );
pm.setProperty( Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE );
Writer pw = new FileWriter(file2Save);
pm.marshal(this, pw);
pw.close();
} catch (Exception e) {
System.out.println("XML-Error while saving Setup-File!");
e.printStackTrace();
saved = false;
}
return saved;
}
示例4: toXmlWithComment
import javax.xml.bind.Marshaller; //导入依赖的package包/类
public static String toXmlWithComment(Object obj, String tagName, String comment) {
StringWriter writer = new StringWriter();
String res = null;
try {
JAXBContext context = JAXBContext.newInstance(obj.getClass());
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
marshaller.marshal(obj, writer);
String xml = writer.toString();
if (xml.indexOf(tagName) > -1)
res = xml.replace("<" + tagName + ">", "<!--" + comment + "-->\n" + "<" + tagName + ">");
else
res = xml;
} catch (JAXBException e) {
e.printStackTrace();
}
return res;
}
示例5: saveEntryDataToFile
import javax.xml.bind.Marshaller; //导入依赖的package包/类
public void saveEntryDataToFile(File f) {
try {
JAXBContext context = JAXBContext.newInstance(EntryListWrapper.class);
Marshaller m = context.createMarshaller();
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
// wrapping the entry data
EntryListWrapper wrapper = new EntryListWrapper();
wrapper.setEntries(entryList);
// marshalling and saving xml to file
m.marshal(wrapper, f);
// save file path
setFilePath(f);
}
catch (Exception e) {
Alert alert = new Alert(AlertType.ERROR);
alert.setTitle("Error");
alert.setHeaderText("Could not save data");
alert.setContentText("Could not save data to file:\n" + f.getPath());
alert.showAndWait();
}
}
示例6: generateDetailedReportMultiSignatures
import javax.xml.bind.Marshaller; //导入依赖的package包/类
@Test
public void generateDetailedReportMultiSignatures() throws Exception {
JAXBContext context = JAXBContext.newInstance(DetailedReport.class.getPackage().getName());
Unmarshaller unmarshaller = context.createUnmarshaller();
Marshaller marshaller = context.createMarshaller();
DetailedReport detailedReport = (DetailedReport) unmarshaller.unmarshal(new File("src/test/resources/detailed-report-multi-signatures.xml"));
assertNotNull(detailedReport);
StringWriter writer = new StringWriter();
marshaller.marshal(detailedReport, writer);
String htmlDetailedReport = service.generateDetailedReport(writer.toString());
assertTrue(Utils.isStringNotEmpty(htmlDetailedReport));
logger.debug("Detailed report html : " + htmlDetailedReport);
}
示例7: JAXBSource
import javax.xml.bind.Marshaller; //导入依赖的package包/类
/**
* Creates a new {@link javax.xml.transform.Source} for the given content object.
*
* @param marshaller
* A marshaller instance that will be used to marshal
* <code>contentObject</code> into XML. This must be
* created from a JAXBContext that was used to build
* <code>contentObject</code> and must not be null.
* @param contentObject
* An instance of a JAXB-generated class, which will be
* used as a {@link javax.xml.transform.Source} (by marshalling it into XML). It must
* not be null.
* @throws JAXBException if an error is encountered while creating the
* JAXBSource or if either of the parameters are null.
*/
public JAXBSource( Marshaller marshaller, Object contentObject )
throws JAXBException {
if( marshaller == null )
throw new JAXBException(
Messages.format( Messages.SOURCE_NULL_MARSHALLER ) );
if( contentObject == null )
throw new JAXBException(
Messages.format( Messages.SOURCE_NULL_CONTENT ) );
this.marshaller = marshaller;
this.contentObject = contentObject;
super.setXMLReader(pseudoParser);
// pass a dummy InputSource. We don't care
super.setInputSource(new InputSource());
}
示例8: readPayload
import javax.xml.bind.Marshaller; //导入依赖的package包/类
@Override
public XMLStreamReader readPayload() throws XMLStreamException {
try {
if(infoset==null) {
if (rawContext != null) {
XMLStreamBufferResult sbr = new XMLStreamBufferResult();
Marshaller m = rawContext.createMarshaller();
m.setProperty("jaxb.fragment", Boolean.TRUE);
m.marshal(jaxbObject, sbr);
infoset = sbr.getXMLStreamBuffer();
} else {
MutableXMLStreamBuffer buffer = new MutableXMLStreamBuffer();
writePayloadTo(buffer.createFromXMLStreamWriter());
infoset = buffer;
}
}
XMLStreamReader reader = infoset.readAsXMLStreamReader();
if(reader.getEventType()== START_DOCUMENT)
XMLStreamReaderUtil.nextElementContent(reader);
return reader;
} catch (JAXBException e) {
// bug 6449684, spec 4.3.4
throw new WebServiceException(e);
}
}
示例9: readPayloadAsJAXB
import javax.xml.bind.Marshaller; //导入依赖的package包/类
@Override
public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException {
JAXBResult out = new JAXBResult(unmarshaller);
// since the bridge only produces fragments, we need to fire start/end document.
try {
out.getHandler().startDocument();
if (rawContext != null) {
Marshaller m = rawContext.createMarshaller();
m.setProperty("jaxb.fragment", Boolean.TRUE);
m.marshal(jaxbObject,out);
} else
bridge.marshal(jaxbObject,out);
out.getHandler().endDocument();
} catch (SAXException e) {
throw new JAXBException(e);
}
return (T)out.getResult();
}
示例10: readPayloadElement
import javax.xml.bind.Marshaller; //导入依赖的package包/类
private void readPayloadElement() {
PayloadElementSniffer sniffer = new PayloadElementSniffer();
try {
if (rawContext != null) {
Marshaller m = rawContext.createMarshaller();
m.setProperty("jaxb.fragment", Boolean.FALSE);
m.marshal(jaxbObject, sniffer);
} else {
bridge.marshal(jaxbObject, sniffer, null);
}
} catch (JAXBException e) {
// if it's due to us aborting the processing after the first element,
// we can safely ignore this exception.
//
// if it's due to error in the object, the same error will be reported
// when the readHeader() method is used, so we don't have to report
// an error right now.
payloadQName = sniffer.getPayloadQName();
}
}
示例11: createMarshaller
import javax.xml.bind.Marshaller; //导入依赖的package包/类
/**
* 创建Marshaller并设定encoding(可为null). 线程不安全,需要每次创建或pooling。
*/
@SuppressWarnings("rawtypes")
public static Marshaller createMarshaller(Class clazz, String encoding) {
try {
JAXBContext jaxbContext = getJaxbContext(clazz);
Marshaller marshaller = jaxbContext.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
if (StringUtils.isNotBlank(encoding)) {
marshaller.setProperty(Marshaller.JAXB_ENCODING, encoding);
}
return marshaller;
} catch (JAXBException e) {
throw ExceptionUtil.unchecked(e);
}
}
示例12: serializeBillingDetails
import javax.xml.bind.Marshaller; //导入依赖的package包/类
private void serializeBillingDetails(BillingResult billingResult,
BillingDetailsType billingDetails) {
try {
final JAXBContext context = JAXBContext
.newInstance(BillingdataType.class);
final ByteArrayOutputStream out = new ByteArrayOutputStream();
final Marshaller marshaller = context.createMarshaller();
marshaller.setProperty("jaxb.formatted.output", Boolean.FALSE);
final BillingdataType billingdataType = new BillingdataType();
billingdataType.getBillingDetails().add(billingDetails);
marshaller.marshal(factory.createBillingdata(billingdataType), out);
final String xml = new String(out.toByteArray(), "UTF-8");
billingResult.setResultXML(xml.substring(
xml.indexOf("<Billingdata>") + 13,
xml.indexOf("</Billingdata>")).trim());
billingResult.setGrossAmount(billingDetails.getOverallCosts()
.getGrossAmount());
billingResult.setNetAmount(billingDetails.getOverallCosts()
.getNetAmount());
} catch (JAXBException | UnsupportedEncodingException ex) {
throw new BillingRunFailed(ex);
}
}
示例13: serialize
import javax.xml.bind.Marshaller; //导入依赖的package包/类
@Override
public void serialize(final T t, final OutputStream out) throws SerializationException {
if (t == null) {
throw new IllegalArgumentException("The object to serialize cannot be null");
}
if (out == null) {
throw new IllegalArgumentException("OutputStream cannot be null");
}
try {
final Marshaller marshaller = jaxbContext.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(t, out);
} catch (JAXBException e) {
throw new SerializationException("Unable to serialize object", e);
}
}
示例14: toXML
import javax.xml.bind.Marshaller; //导入依赖的package包/类
@Override
public String toXML(T obj) {
try {
JAXBContext context = JAXBContext.newInstance(type);
Marshaller m = context.createMarshaller();
if(schemaLocation != null) {
SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
StreamSource source = new StreamSource(getClass().getResourceAsStream(schemaLocation));
Schema schema = schemaFactory.newSchema(source);
m.setSchema(schema);
}
StringWriter writer = new StringWriter();
m.marshal(obj, writer);
String xml = writer.toString();
return xml;
} catch (Exception e) {
System.out.println("ERROR: "+e.toString());
return null;
}
}
示例15: createLtiOutcomesRequest
import javax.xml.bind.Marshaller; //导入依赖的package包/类
private Request createLtiOutcomesRequest(ImsxPOXEnvelopeType imsxEnvelope, String url, String consumerKey,
String consumerSecret) throws Exception
{
final Request webRequest = new Request(url);
webRequest.setMethod(Method.POST);
webRequest.setMimeType("application/xml");
final ObjectFactory of = new ObjectFactory();
final JAXBElement<ImsxPOXEnvelopeType> createImsxPOXEnvelopeRequest = of
.createImsxPOXEnvelopeRequest(imsxEnvelope);
final JAXBContext jc = JAXBContext.newInstance("com.tle.web.lti.imsx", LtiServiceImpl.class.getClassLoader());
final Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
final StringWriter sw = new StringWriter();
marshaller.marshal(createImsxPOXEnvelopeRequest, sw);
webRequest.setBody(sw.toString());
final String bodyHash = calcSha1Hash(webRequest.getBody());
final OAuthMessage message = createLaunchParameters(consumerKey, consumerSecret, url, bodyHash);
webRequest.addHeader("Authorization", message.getAuthorizationHeader(""));
return webRequest;
}