我正在尝试将图像视图设置为从 url 获取的位图,但是在运行以下代码后会出现以下堆栈跟踪:
public Bitmap getAlbumCover(Context context, String song, String artist) {
this.context = context;
song = song.replace(" ", "%20");
artist = artist.replace(" ", "%20");
final String finalSong = song;
final String finalArtist = artist;
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
try {
ObjectMapper mapper = new ObjectMapper();
Document doc = Jsoup.connect("http://api.spotify.com/v1/search?q=track:" + finalSong + "%20artist:" + finalArtist+"%20" + "&type=track").ignoreContentType(true).get();
String body = String.valueOf(doc.body().text());
JsonNode readTree = mapper.readTree(body);
albumArt = readTree.findPath("url");
try {
URL url = new URL(albumArt.toString());
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
albumImage = BitmapFactory.decodeStream(input);
} catch (Exception e) {
Log.e("Error", e.getMessage());
e.printStackTrace();
}
} catch (JsonGenerationException e) {
e.printStackTrace();
} catch (JsonMappingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
});
thread.start();
Log.i("icon", "i"+ albumImage);
return albumImage;
}
这是堆栈跟踪:
03-23 20:18:43.242 6917-6991/.xyz.php_request W/nAnnotationIntrospector: Unable to load JDK7 annotation types; will have to skip
03-23 20:18:43.943 6917-6991/.xyz.php_request E/Error: Protocol not found: "https://i.scdn.co/image/9c2c4a9ac9726bfd996ff96383178bbb5efc59ab"
03-23 20:18:43.943 6917-6991/.xyz.php_request W/System.err: java.net.MalformedURLException: Protocol not found: "https://i.scdn.co/image/9c2c4a9ac9726bfd996ff96383178bbb5efc59ab"
03-23 20:18:43.943 6917-6991/.xyz.php_request W/System.err: at java.net.URL.<init>(URL.java:176)
03-23 20:18:43.943 6917-6991/.xyz.php_request W/System.err: at java.net.URL.<init>(URL.java:125)
03-23 20:18:43.943 6917-6991/.xyz.php_request W/System.err: at pillo.xyz.php_request.songlistadapter$1.run(songlistadapter.java:124)
03-23 20:18:43.943 6917-6991/.xyz.php_request W/System.err: at java.lang.Thread.run(Thread.java:818)
链接在这里:https ://i.scdn.co/image/9c2c4a9ac9726bfd996ff96383178bbb5efc59ab 如果你点击它,它会拉出一张图片。我究竟做错了什么?我已经尝试过用 UTF-8 对 URL 进行编码。
编辑:
记录专辑封面返回:I/专辑封面:“ https://i.scdn.co/image/bf44daf8c3f35de83e5875bc49791c1347ef36f0 ”