這裏我通過在我的服務器上使用'base64格式'轉換爲字符串來存儲圖像,並且我可以在圖像視圖中以相同的方式顯示它。但是現在我想要將它下載到我的sd卡。我可以看到有些人使用'URL'下載。但在我的情況下,沒有URL.I只是將圖像轉換爲字符串並存儲,並能夠通過重新轉換在imageview上顯示它。Android下載圖像
這是我再轉串入圖像
//getting string from server using json parsor
String image=json_data.getString("img");
txt.setText(u);
//converting string to image
byte[] imageAsBytes = Base64.decode(p.getBytes(), 0);
im = (ImageView)this.findViewById(R.id.imageView1);
im.setImageBitmap(
BitmapFactory.decodeByteArray(imageAsBytes, 0,imageAsBytes.length));
,什麼是你的問題? – Bracadabra 2015-02-06 14:08:03
我需要將它保存到我的SD卡 – 2015-02-07 05:51:30