作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试使用 JSON 将图像保存和检索到我的 Web 数据库,但似乎我没有做对,问题是图像没有被复制。这是我的代码
获取图片
BitmapDrawable bitmapDrawable = ((BitmapDrawable)objectImage.getDrawable());
Bitmap b = bitmapDrawable.getBitmap();
ByteArrayOutputStream bos = new ByteArrayOutputStream();
b.compress(Bitmap.CompressFormat.PNG, 100, bos);
byte[] img = bos.toByteArray();
在此之后我希望图像现在在 byte[] 数组中被压缩或加密现在这是我通过 JSON 将它传递到我的数据库中的方式
String imgData = Base64.encodeToString(image, Base64.DEFAULT);
nameValuePairs.add(new BasicNameValuePair("image", imgData));
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(getUri(category));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
httpclient.execute(httppost);
} catch (Exception e) {
Log.e("log_tag", "Error in http connection " + e.toString());
}
这就是我检索它的方式
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(getUriForRetrieve(category));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();
try {
BufferedReader reader = new BufferedReader(
new InputStreamReader(is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
sb.append(reader.readLine() + "\n");
String line = "0";
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
result = sb.toString();
} catch (Exception e) {
Log.e("log_tag", "Error converting result " + e.toString());
}
} catch (Exception e) {
Log.e("log_tag", "getProducts()" + e.toString());
}
return result;
}
try {
JSONArray jArray = new JSONArray(getResult("Letters"));
JSONObject json_data = null;
if (jArray.length() > 0) {
for (int i = 0; i < jArray.length(); i++) {
json_data = jArray.getJSONObject(i);
Letters letter = new Letters();
letter.setImage(Base64.decode(json_data.getString("image"),
Base64.DEFAULT));
letterList.add(letter);
}
}
} catch (JSONException e1) {
Log.e("log_tag", "getProducts()" + e1.toString());
} catch (ParseException e1) {
e1.printStackTrace();
}
下面是我如何将它解码为位图
Bitmap b1 = BitmapFactory.decodeByteArray(img, 0, img.length);
objectImage.setImageBitmap(b1);
但是没有生成图片可能是哪里出了问题?
提前致谢
最佳答案
我在这个 post 中遇到了一个非常相似的问题我几天前做过,他们给我的建议是使用像 Google Volley 这样的网络库让我的请求更容易,工作量更少。另外,这是一个 link教程包含使用 Volley
的自定义 ListView
以及图像和文本。
希望对您有所帮助。
关于android - 如何在 ANDROID 中通过 JSON 在 Web 数据库中保存和检索图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28880583/
我是一名优秀的程序员,十分优秀!