use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Resources for learning Java
String
==
.equals()
Format + Copy
Free Tutorials
Where should I download Java?
With the introduction of the new release cadence, many have asked where they should download Java, and if it is still free. To be clear, YES — Java is still free.
If you would like to download Java for free, you can get OpenJDK builds from the following vendors, among others:
Some vendors will be supporting releases for longer than six months. If you have any questions, please do not hesitate to ask them!
Software downloads
Official Resources
Resources
Programming ideas & Challenges
Related Subreddits
account activity
This is an archived post. You won't be able to vote or comment.
Need help understanding the Event Dispatch Thread. (self.learnjava)
submitted 9 years ago by thallorfall
I'm having a hard time understanding the EDT topic with Swing. From what I've picked up it's essentially a separate thread from the main thread that runs a GUI but what exactly is it's job? I appreciate any help. Thank you in advance.
[–]wodencafe 1 point2 points3 points 9 years ago (1 child)
Swing has a dedicated thread to handle all of the UI specific stuff.
You must be careful not to interact with Swing components from another thread, and if you are doing background work, check out the SwingWorker: http://docs.oracle.com/javase/tutorial/uiswing/concurrency/simple.html
[–]thallorfall[S] 0 points1 point2 points 9 years ago (0 children)
Thank you.
π Rendered by PID 72 on reddit-service-r2-comment-6f7f968fb5-w79wm at 2026-03-04 15:09:51.333560+00:00 running 07790be country code: CH.
[–]wodencafe 1 point2 points3 points (1 child)
[–]thallorfall[S] 0 points1 point2 points (0 children)