使用Google CustomSearch进入ClassNotFoundException

时间:2012-11-26 02:28:08

标签: java classnotfoundexception

我正在尝试使用Google CustomSeach API java client。但是在运行它时我遇到了异常

Caused by: java.lang.ClassNotFoundException: com.google.api.client.http.HttpTransport

我读过有人说这是由于Guava库。然而,番石榴被包括在这个项目中。下面是该项目中使用的引用库的打印屏幕:

enter image description here

以下是代码片段:

        Customsearch cs = new Customsearch(new NetHttpTransport(), new JacksonFactory(), null);
        Customsearch.Cse.List list = cs.cse().list("rashidi zin");
        list.setKey(API_KEY);
        list.setCx(ID);

        Search results = list.execute();

我一直在尝试添加诸如apache http-client之类的库,但它仍然无效。我错误地使用了库吗?

0 个答案:

没有答案