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