NoClassDefFoundError: HttpClient 4 (APACHE)

Je suis à l'aide de http apache commons 4.J'ai ajouté les deux httpcore-4.0.1.jar et httpclient-4.0.1.jar dans le classpath de netbeans. J'obtiens l'erreur:

java.lang.NoClassDefFoundError: org/apache/http/impl/client/DefaultHttpClient

Mon Code est comme suit. S'il vous plaît aider.

import org.apache.http.client.HttpClient;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.impl.client.DefaultHttpClient;

public class HttpClientManager {
    public HttpClient httpclient;
    public HttpClientManager() {
        this.init();
    }

    public void init() {
        try {
            httpclient = new DefaultHttpClient();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void getCourseList() {
        String url = "http://exnet.in.th/api.php?username=demoinst&ha=2b62560&type=instructor";
        HttpGet httpget = new HttpGet(url);

        ResponseHandler<String> responseHandler = new BasicResponseHandler();
        try {
            String responseBody = httpclient.execute(httpget, responseHandler);
            System.out.println(responseBody);

        } catch (Exception e) {
        }    
    }
}