added image url checking, removed redundant url type
This commit is contained in:
parent
6904663e59
commit
73b74bcee3
@ -169,7 +169,9 @@ public class TopAlbumController {
|
||||
|
||||
Album album = (Album) obj;
|
||||
|
||||
GetFXImageService service = new GetFXImageService(album.getImageURL().toString(), counter);
|
||||
if (album.getImageURL() != null) {
|
||||
|
||||
GetFXImageService service = new GetFXImageService(album.getImageURL(), counter);
|
||||
|
||||
service.setOnSucceeded(new EventHandler<WorkerStateEvent>() {
|
||||
|
||||
@ -189,6 +191,7 @@ public class TopAlbumController {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ public class Album extends FMObj implements Serializable, Cacheable{
|
||||
protected ArrayList<Tag> tagList;
|
||||
protected ArrayList<Track> trackList;
|
||||
|
||||
protected URL imageUrl;
|
||||
protected String imageUrl;
|
||||
protected BufferedImage image;
|
||||
|
||||
private Album(AlbumBuilder builder) {
|
||||
@ -42,13 +42,13 @@ public class Album extends FMObj implements Serializable, Cacheable{
|
||||
|
||||
}
|
||||
|
||||
public URL getImageURL() {
|
||||
public String getImageURL() {
|
||||
return imageUrl;
|
||||
}
|
||||
|
||||
public void loadImage() {
|
||||
try {
|
||||
image = ImageIO.read(imageUrl);
|
||||
image = ImageIO.read(new URL(imageUrl));
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
@ -113,8 +113,7 @@ public class Album extends FMObj implements Serializable, Cacheable{
|
||||
protected ArrayList<Tag> tagList;
|
||||
protected ArrayList<Track> trackList;
|
||||
|
||||
protected URL imageUrl;
|
||||
|
||||
protected String imageUrl;
|
||||
|
||||
public AlbumBuilder(String name, Artist artist) {
|
||||
|
||||
@ -163,11 +162,7 @@ public class Album extends FMObj implements Serializable, Cacheable{
|
||||
}
|
||||
|
||||
public AlbumBuilder setImageUrl(String url) {
|
||||
try {
|
||||
this.imageUrl = new URL(url);
|
||||
} catch (MalformedURLException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
this.imageUrl = url;
|
||||
return this;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user