The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
February 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

java

Posted by Victor Krivo on May 06, 2001 at 9:30 PM

private JTextArea display = new JTextArea(10,20);

startTime = System.currentTimeMillis();
int sum;
for (int i=0; i sum=i;
}
currentTime = System.currentTimeMillis();

elapsedTime = currentTime - startTime;
display.setText(elapsedTime + "msec");


display.setText(elapsedTime + "msec");
This does not work in Swing. What do I need to use instead???



Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us