apache « Development « Java Swing Q&A





1. Apache's HttpClient falls asleep in Swing application    stackoverflow.com

I faced very strange problem. Writing an application to download some data from Internet with proxy server support I decided to use Apache's HttpClient library. jar binaries were successfully added to ...

2. swing application and osgi felix    stackoverflow.com

I've created a very simple bundle:

public class Main implements BundleActivator, ServiceListener{

public void start(BundleContext bc) throws Exception {

    bc.addServiceListener(this);

    //trivial system out
    System.out.println("started");

 ...