On Thu, 02 May 2013 17:06:45 +0200, Achim Peters wrote:
>> txtAusgabe.setText("Download completed.");
> txtAusgabe.setText("Download cancelled");
Oh je, bitte nie nie von einem anderen Thread aus Swing anfassen. Swing ist
nicht threadsafe. Korrekt:
SwingUtilities.invokeLater(new Runnable() {
public void run() {
txtAusgabe.setText("Download whatever");
}
});