News

Which is better for your next Java GUI project: Java Swing vs. JavaFX? This tip explores their history and capabilities to help you choose the right one.
Unfortunately, Java applications taking advantage of multiple threads can at times run into the dreaded deadlock condition. Fortunately, the Java Platform makes deadlock detection relatively easy.
This article is the first in a four-part Java 101 series exploring Java threads. Although you might think threading in Java would be challenging to grasp, I intend to show you that threads are ...
I've a program that uses IActiveScript to run custom JavaScript (JScript). My issue is that this is a synchronous call and blocks the GUI thread while running. 99% of the time, the scripts are ...