将blob转换为string以创建一个json对象,然后将字符串更改回blob

时间:2018-11-08 08:36:56

标签: java json blob

我的要求是将数据库字段中的Blob转换为字符串以创建json对象。我已经做到了。

现在,我需要将此字符串转换回blob。我写了下面的代码。但是,它不起作用。就我而言,我将文档文档存储为blob。我将其转换为字符串,但是当我将字符串转换为blob时,文档无法正确打开。

请让我知道一种将字符串转换回blob的方法。

DocumentTemplateKey documentTemplateKey = new DocumentTemplateKey();
documentTemplateKey.documentTemplateID = "XX";
DocumentTemplateDtls documentTemplateDtls = DocumentTemplateFactory.newInstance().read(documentTemplateKey);

byte[] blobAsBytes = documentTemplateDtls.contents.copyBytes();

ByteArrayOutputStream bos = new ByteArrayOutputStream();


bos.write(blobAsBytes, 0, blobAsBytes.length);

String pdfBase64String = 
  org.apache.commons.codec.binary.StringUtils.newStringUtf8(org.apache.
  commons.codec.binary.Base64.encodeBase64(bos.toByteArray()));

OutputStreamWriter out = new OutputStreamWriter(System.out);
JsonWriter writer = new JsonWriter(out);
//set indentation for pretty print
writer.setIndent("\t");
//start writing
writer.beginObject(); //{
writer.name("blob").value(pdfBase64String);
byte[] stringAsBytes =  org.apache.commons.codec.binary.StringUtils.getBytesUtf8(pdfBase64String);

Blob blob = new Blob(stringAsBytes);
documentTemplateDtls.contents = blob;
documentTemplateDtls.documentTemplateID = "XX12";
documentTemplateDtls.name = "XX12";
DocumentTemplateFactory.newInstance().insert(documentTemplateDtls);
writer.endObject();

writer.flush();

//close writer
writer.close();

1 个答案:

答案 0 :(得分:0)

这是您的问题:

byte[] stringAsBytes = org.apache.commons.codec.binary.StringUtils.getBytesUtf8(pdfBase64String);

您正在获取base64字符串的字节,但您应该将其通过base64解码器。