I have the following code:
import javax.swing.*;
import java.awt.event.*;
import java.util.List;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
public class KaraokeMachine extends JFrame implements ActionListener
{
ClassLoader Idr = this.getClass().getClassLoader();
java.applet.AudioClip everythingIsAwesome = JApplet.newAudioClip( Idr.getResource( "everything is awesome.wav" ) );
JLabel lbl1 = new JLabel( "" );
JButton btn = new JButton( "Play" );
JPanel pnl = new JPanel();
final Executor executor = Executors.newCachedThreadPool();
public KaraokeMachine()
{
super( "Karaoke" );
setSize( 520, 280 );
setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
pnl.add( lbl1 );
pnl.add( btn );
btn.addActionListener( this );
add( pnl ); setVisible( true );
}
public void actionPerformed( ActionEvent event )
{
if ( event.getSource() == btn )
{
SwingWorker<Void, String> worker = new SwingWorker<Void, String>()
{
@Override
protected Void doInBackground() throws Exception
{
everythingIsAwesome.play();
this.publish("Everything");
Thread.sleep( 600 );
this.publish("Everything is");
Thread.sleep( 400 );
this.publish("Everything is Awesome!");
Thread.sleep( 2000 );
this.publish("Everything");
Thread.sleep( 600 );
this.publish("Everything is");
Thread.sleep( 400 );
this.publish("Everything is cool");
Thread.sleep( 400 );
this.publish("Everything is cool when");
Thread.sleep( 400 );
this.publish("Everything is cool when you're");
Thread.sleep( 400 );
this.publish("Everything is cool when you're part");
Thread.sleep( 150 );
this.publish("Everything is cool when you're part of");
Thread.sleep( 150 );
this.publish("Everything is cool when you're part of a");
Thread.sleep( 150 );
this.publish("Everything is cool when you're part of a team");
Thread.sleep( 1000 );
this.publish("Everything");
Thread.sleep( 600 );
this.publish("Everything is");
Thread.sleep( 400 );
this.publish("Everything is Awesome!");
Thread.sleep( 1500 );
this.publish("When");
Thread.sleep( 300 );
this.publish("When you're");
Thread.sleep( 300 );
this.publish("When you're livin'");
Thread.sleep( 300 );
this.publish("When you're livin' in");
Thread.sleep( 300 );
this.publish("When you're livin' in a");
Thread.sleep( 300 );
this.publish("When you're livin' in a dream!");
Thread.sleep( 300 );
return null;
}
@Override
protected void process( List<String> res )
{
for(String text : res)
{
lbl1.setText(text);
}
}
};
executor.execute(worker);
}
}
public static void main( String[] args )
{
KaraokeMachine karaoke = new KaraokeMachine();
}
}
When I make this into a class file, it works fine but when I make it into a jar file, i get the following error:
Exception in thread "AWT-EventQueue-0" java.lang.NoClassDegFoundError: KaraokeMachine$1
Does anyone know how to change the code so the swingworker works in a jar file?
That exception means that some anoymous inner class is missing in your class path. So the answer is most likely: when you "bundle" your classes into that class file, you forgot that classes can be named A$1.class
.
KaraokeMachine.class is the "main" class, but here:
SwingWorker<Void, String> worker = new SwingWorker<Void, String>() {
you are creating an anonymous inner class - which goes into KaraokeMachine$1.class. In order to run your application, you need all these class files to exist.
In other words: the content of your JAR file is incomplete. Have a close look at how you build that JAR file. See here for example.