- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.eclipse.persistence.internal.oxm.XMLConversionManager.convertSchemaBase64ToByteArray()
方法的一些代码示例,展示了XMLConversionManager.convertSchemaBase64ToByteArray()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLConversionManager.convertSchemaBase64ToByteArray()
方法的具体详情如下:
包路径:org.eclipse.persistence.internal.oxm.XMLConversionManager
类名称:XMLConversionManager
方法名:convertSchemaBase64ToByteArray
[英]INTERNAL: Converts a String which is in Base64 format to a Byte[]
[中]内部:将Base64格式的字符串转换为字节[]
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
protected Byte[] convertSchemaBase64ToByteObjectArray(Object sourceObject) throws ConversionException {
byte[] bytes = convertSchemaBase64ToByteArray(sourceObject);
Byte[] objectBytes = new Byte[bytes.length];
for (int index = 0; index < bytes.length; index++) {
objectBytes[index] = bytes[index];
}
return objectBytes;
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
protected Byte[] convertSchemaBase64ToByteObjectArray(Object sourceObject) throws ConversionException {
byte[] bytes = convertSchemaBase64ToByteArray(sourceObject);
Byte[] objectBytes = new Byte[bytes.length];
for (int index = 0; index < bytes.length; index++) {
objectBytes[index] = bytes[index];
}
return objectBytes;
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
protected Byte[] convertSchemaBase64ToByteObjectArray(Object sourceObject) throws ConversionException {
byte[] bytes = convertSchemaBase64ToByteArray(sourceObject);
Byte[] objectBytes = new Byte[bytes.length];
for (int index = 0; index < bytes.length; index++) {
objectBytes[index] = new Byte(bytes[index]);
}
return objectBytes;
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
public DataHandler convertObjectToDataHandler(Object sourceObject, AbstractSession session) {
DataHandler handler = null;
if (sourceObject instanceof DataHandler) {
return (DataHandler) sourceObject;
} else if (sourceObject instanceof byte[]) {
byte[] bytes = (byte[]) sourceObject;
handler = new DataHandler(new ByteArrayDataSource(bytes, "application/octet-stream"));
} else if (sourceObject instanceof Byte[]) {
byte[] bytes = (byte[]) session.getDatasourcePlatform().getConversionManager().convertObject(sourceObject, ClassConstants.APBYTE);
handler = new DataHandler(new ByteArrayDataSource(bytes, "application/octet-stream"));
}
if (sourceObject instanceof String) {
//assume base64 String
byte[] bytes = ((XMLConversionManager) session.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(sourceObject);
handler = new DataHandler(new ByteArrayDataSource(bytes, "application/octet-stream"));
} else if (sourceObject instanceof Image) {
handler = new DataHandler(sourceObject, "image/jpeg");
} else if (sourceObject instanceof Source) {
handler = new DataHandler(sourceObject, "text/xml");
} else if (sourceObject instanceof MimeMultipart) {
handler = new DataHandler(sourceObject, ((MimeMultipart) sourceObject).getContentType());
}
return handler;
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
return super.convertObjectToByteArray(sourceObject);
} else if (schemaTypeQName.getLocalPart().equalsIgnoreCase(XMLConstants.BASE_64_BINARY)) {
return convertSchemaBase64ToByteArray(sourceObject);
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
return super.convertObjectToByteArray(sourceObject);
} else if (schemaTypeQName.getLocalPart().equalsIgnoreCase(Constants.BASE_64_BINARY)) {
return convertSchemaBase64ToByteArray(sourceObject);
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
return super.convertObjectToByteArray(sourceObject);
} else if (schemaTypeQName.getLocalPart().equalsIgnoreCase(Constants.BASE_64_BINARY)) {
return convertSchemaBase64ToByteArray(sourceObject);
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
} else if (!this.isSwaRef()) {
byte[] bytes = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(element);
fieldValue = bytes;
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
fieldValue = record.get(XMLConstants.TEXT);
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
} else if (!this.isSwaRef()) {
byte[] bytes = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(element);
fieldValue = bytes;
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
fieldValue = record.get(XMLConstants.TEXT);
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
} else if (!this.isSwaRef()) {
byte[] bytes = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(element);
fieldValue = bytes;
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
fieldValue = record.get(XMLConstants.TEXT);
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
byte[] bytes = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(value);
fieldValue = bytes;
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
} else {
fieldValue = new byte[0];
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
byte[] bytes = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(value);
fieldValue = bytes;
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
} else {
fieldValue = new byte[0];
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
byte[] bytes = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(value);
fieldValue = bytes;
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
fieldValue = ((XMLConversionManager) executionSession.getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(fieldValue);
} else {
fieldValue = new byte[0];
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
/**
* Handle swaRef and inline attribute cases.
*/
public void attribute(UnmarshalRecord unmarshalRecord, String URI, String localName, String value) {
unmarshalRecord.removeNullCapableValue(this);
XMLField xmlField = (XMLField) xmlBinaryDataMapping.getField();
XPathFragment lastFragment = xmlField.getLastXPathFragment();
Object fieldValue = null;
if (xmlBinaryDataMapping.isSwaRef()) {
if (unmarshalRecord.getUnmarshaller().getAttachmentUnmarshaller() != null) {
if (xmlBinaryDataMapping.getAttributeClassification() == XMLBinaryDataHelper.getXMLBinaryDataHelper().DATA_HANDLER) {
fieldValue = unmarshalRecord.getUnmarshaller().getAttachmentUnmarshaller().getAttachmentAsDataHandler(value);
} else {
fieldValue = unmarshalRecord.getUnmarshaller().getAttachmentUnmarshaller().getAttachmentAsByteArray(value);
}
xmlBinaryDataMapping.setAttributeValueInObject(unmarshalRecord.getCurrentObject(), XMLBinaryDataHelper.getXMLBinaryDataHelper().convertObject(fieldValue, xmlBinaryDataMapping.getAttributeClassification(), unmarshalRecord.getSession()));
}
} else {
// value should be base64 binary string
fieldValue = ((XMLConversionManager) unmarshalRecord.getSession().getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(value);
xmlBinaryDataMapping.setAttributeValueInObject(unmarshalRecord.getCurrentObject(), XMLBinaryDataHelper.getXMLBinaryDataHelper().convertObject(fieldValue, xmlBinaryDataMapping.getAttributeClassification(), unmarshalRecord.getSession()));
}
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
fieldValue = ((XMLConversionManager) unmarshalRecord.getSession().getDatasourcePlatform().getConversionManager()).convertSchemaBase64ToByteArray(value);
xmlBinaryDataCollectionMapping.setAttributeValueInObject(unmarshalRecord.getCurrentObject(), XMLBinaryDataHelper.getXMLBinaryDataHelper().convertObject(fieldValue, xmlBinaryDataCollectionMapping.getAttributeClassification(),
unmarshalRecord.getSession()));
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
value = XMLConversionManager.getDefaultXMLManager().convertSchemaBase64ToByteArray(value);
if (converter != null) {
if (converter instanceof XMLConverter) {
我正在使用 jersey( 编写 jax-rs Restful 应用程序,GET 请求很好,但 POST、PUT 和 DELETE 请求给出以下错误 SEVERE: Servlet.service()
从旧版自由式 Web 服务中,我收到以下类型的数据: value1 value2 ... valueN 元素名称 key1, key2, ... 事先未知,并且可以
这与 my prior question 相关一般来说,这更针对 JAXB。但这个问题与 spring-oxm 中的解码器更相关。我想看看是否可以使用 spring-oxm 解码器仅解码 XML 中的
本文整理了Java中org.eclipse.persistence.oxm.XMLRoot类的一些代码示例,展示了XMLRoot类的具体用法。这些代码示例主要来源于Github/Stackoverfl
本文整理了Java中org.eclipse.persistence.oxm.XMLMarshaller类的一些代码示例,展示了XMLMarshaller类的具体用法。这些代码示例主要来源于Github
本文整理了Java中org.eclipse.persistence.oxm.XMLLogin类的一些代码示例,展示了XMLLogin类的具体用法。这些代码示例主要来源于Github/Stackover
尽管我已经成为一名开发人员有一段时间了,但我很幸运能够避免使用 XML 进行大量工作。所以现在我有一个项目,我必须在其中与一些 Web 服务进行交互,并且想使用某种对象到 XML 映射解决方案。 我唯
本文整理了Java中org.eclipse.persistence.internal.oxm.XPathFragment类的一些代码示例,展示了XPathFragment类的具体用法。这些代码示例主要
本文整理了Java中org.eclipse.persistence.oxm.annotations.XmlPath类的一些代码示例,展示了XmlPath类的具体用法。这些代码示例主要来源于Github
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLCompositeObjectMapping类的一些代码示例,展示了XMLCompositeObje
本文整理了Java中org.eclipse.persistence.internal.oxm.XMLConversionManager类的一些代码示例,展示了XMLConversionManager类
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLTransformationMapping类的一些代码示例,展示了XMLTransformation
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLInverseReferenceMapping类的一些代码示例,展示了XMLInverseRefer
本文整理了Java中org.eclipse.persistence.internal.oxm.XPathNode类的一些代码示例,展示了XPathNode类的具体用法。这些代码示例主要来源于Githu
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLObjectReferenceMapping类的一些代码示例,展示了XMLObjectReferen
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLBinaryDataMapping类的一些代码示例,展示了XMLBinaryDataMapping类
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLAnyCollectionMapping类的一些代码示例,展示了XMLAnyCollectionMa
本文整理了Java中org.eclipse.persistence.oxm.schema.XMLSchemaReference类的一些代码示例,展示了XMLSchemaReference类的具体用法。
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLChoiceObjectMapping类的一些代码示例,展示了XMLChoiceObjectMapp
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLChoiceCollectionMapping类的一些代码示例,展示了XMLChoiceCollec
我是一名优秀的程序员,十分优秀!