其他分享
首页 > 其他分享> > android – 从png.class读取时出错

android – 从png.class读取时出错

作者:互联网

当我尝试从URL加载图像时,使用以下代码(删除实际图像路径):

Bitmap bitmap = BitmapFactory.decodeStream((InputStream)new URL("http://some-path/img.png").getContent());

我收到以下错误:

Error reading from ./org/apache/harmony/awt/www/content/image/png.class

有关可能导致错误的原因的任何想法?

我正在使用GoogleTV AVD,如果这很重要的话.

解决方法:

我希望这就足够了.

如果你使用的是php;

echo base64_encode($imgBinary); // You can get the imagebinary by using the fread and fopen methods provided by php

在android上:

HttpClient client = new DefaultHttpClient();
HttpResponse response = client.execute(new HttpGet(url));
HttpEntity entity = httpResponse.getEntity();

if(entity != null) {
InputStream is = entity.getContent();
byte[] decodedString = Base64.decode(convertStreamToString(is), Base64.DEFAULT);
Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length); 
}

这可能不是最有效的方法,但它应该完成这项工作.
从那里你可以建立:)

你可以将位图压缩成PNG,然后安全.例:

decodedByte.compress(compressformat, quality, stream);//suported compress formats can be used like so: Bitmap.CompressFormat.PNG etc

convertStreamToString是很容易找到的方法.只需快速谷歌搜索,或自己编写.

标签:android,google-tv
来源: https://codeday.me/bug/20190518/1126705.html