4

我需要基于数据库中的 blob 创建 JSON。为了获取 blob 图像,我使用下面的代码和在 json 数组中显示之后:

Statement s = connection.createStatement();
ResultSet r = s.executeQuery("select image from images");
while (r.next()) {
    JSONObject obj = new JSONObject();
    obj.put("img", r.getBlob("image"));
}

我想根据图像 blob 为每个图像返回一个 JSON 对象。我怎样才能实现它?

4

1 回答 1

5

JSON 中的二进制数据通常最好以Base64编码的形式表示。您可以使用标准 Java SE 提供的DatatypeConverter#printBase64Binary()方法对字节数组进行 Base64 编码。

byte[] imageBytes = resultSet.getBytes("image");
String imageBase64 = DatatypeConverter.printBase64Binary(imageBytes);
obj.put("img", imageBase64);

另一方只是对它进行 Base64 解码。例如,在 Android 中,您可以为此使用内置android.util.Base64API。

byte[] imageBytes = Base64.decode(imageBase64, Base64.DEFAULT);
于 2013-02-15T15:08:33.243 回答