Skip to content
Advertisement

Metadata from Media is null, JavaFX

I’m trying to get artist’s name from a song in my listview on click of a button but i’m getting this

JavaScript

And here is my code

JavaScript

How do i print it normally, only once?

Advertisement

Answer

Your listener will be invoked when any of the metadata change. Since you’re only interested in when the artist changes, and is changed to a non-null value, you can do:

JavaScript

It’s also pretty safe to assume here that the only change that ever happens to the artist is that a value is added (i.e. goes from null to non-null); making this assumption you could also do

JavaScript

Note that typically in the UI you don’t want to display the value in the console, but in a label (or something similar). In this case, there’s really no need to check for the correct change – you can use a binding instead:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement