【发布时间】:2017-07-19 13:04:44
【问题描述】:
我有以下代码:
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();
}
}
当我把它变成一个类文件时,它工作正常,但是当我把它变成一个 jar 文件时,我收到以下错误:
线程“AWT-EventQueue-0”中的异常 java.lang.NoClassDegFoundError: KaraokeMachine$1
有谁知道如何更改代码以便 swingworker 在 jar 文件中工作?
【问题讨论】:
-
异常堆栈跟踪也是文本。请不要截图它们 - 将它们作为(格式化!)文本添加到您的问题中!
-
好的,谢谢。我会这样做的。
-
更好 - 但现在你删除了“太多”。在这种情况下,可以,但是,通常:可以将“完整”堆栈跟踪复制到问题中。编辑器总是可以删除不需要的东西 - 但他不能添加缺少的东西。
-
我无法在命令提示符之外复制和粘贴,但如果在这种情况下可以,我会离开它。
-
是的。完毕。 :) 谢谢
标签: java swing jar noclassdeffounderror swingworker