如何用JSON表示数据库中的图像

时间:2013-02-15 14:54:02

标签: java json url jdbc blob

我需要根据数据库中的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对象。我怎样才能实现它?

1 个答案:

答案 0 :(得分: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.Base64 API。

byte[] imageBytes = Base64.decode(imageBase64, Base64.DEFAULT);