0

アプリエンジンに画像をアップロードしました。エンドポイントを使用してアプリ エンジンから Android アプリのイメージ BLOB キーを取得しています。画像を表示するためにAndroidアプリでいくつかのコードを実行しています。コードは

URL imageURL = null;
try 
{
    //use our image serve page to get the image URL

    imageURL = new URL("http://yourapp.appspot.com/serveBlob?id=" + o.getImageKey());

} catch (MalformedURLException e) 
{
    e.printStackTrace();
}


try {
     //Decode and resize the image then set as the icon  
     BitmapFactory.Options options = new BitmapFactory.Options();

     options.inJustDecodeBounds = true;

     options.inSampleSize = 1 / 2;

     Bitmap bitmap = BitmapFactor.decodeStream((InputStream) imageURL.getContent());

     Bitmap finImg = Bitmap.createScaledBitmap(bitmap, 50, 50, false);

     icon.setImageBitmap(finImg);

} catch (IOException e) 
{
     e.printStackTrace();
}  

しかし、それは私bitmap = nullにヌルポインタ例外をスローします。

私は緯度 4 日間からこの点に感銘を受けました。私を助けてください。

4

2 に答える 2