Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is the error that I'm getting:

    Exception in thread "Thread-4" java.lang.ExceptionInInitializerError
    at javazoom.jl.decoder.SynthesisFilter.load_d(SynthesisFilter.java:1626)
    at javazoom.jl.decoder.SynthesisFilter.<init>(SynthesisFilter.java:75)
    at javazoom.jl.decoder.Decoder.initialize(Decoder.java:283)
    at javazoom.jl.decoder.Decoder.decodeFrame(Decoder.java:138)
    at javazoom.jl.player.Player.decodeFrame(Player.java:213)
    at javazoom.jl.player.Player.play(Player.java:120)
    at javazoom.jl.player.Player.play(Player.java:104)
    at exetersoundsystem.back.mp3_player$AdvancedPlayerThread.run(mp3_player.java:192)
Caused by: java.io.IOException: unable to load resource 'sfd.ser'
    at javazoom.jl.decoder.JavaLayerUtils.deserializeArrayResource(JavaLayerUtils.java:146)
    at javazoom.jl.decoder.SynthesisFilter.load_d(SynthesisFilter.java:1621)
    ... 7 more

I goggled it a bit and I was told to change some policy for some file, but I'm totally lost on what to change.

share|improve this question
Information on what you were told would be helpful. A link, maybe? – Jeremy Heiler May 5 '11 at 22:49

1 Answer

up vote 1 down vote accepted

I guess it's a serial number - did they change the license?

I wrote a pure java mp3 player: mp3transform - it is based on JLayer from JavaZoom when it was still LGPL.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.