我正在获得MalformURLException: Protocol not found,当时,我正试图从URL的雕像中填满图像。 当时,在Browser,我曾经这样说。 但是,在《图像评论》中没有显示。 I ve 使用了该法典:
public static Bitmap getBitmapFromURL(String src) {
try
{
URL url = new URL(src);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
Bitmap myBitmap = BitmapFactory.decodeStream(input);
return myBitmap;
}
catch (IOException e) {
e.printStackTrace();
return null;
}
}
请任何人告诉我问题是什么? 这对我非常有益。