我想在我的代码中使用jersey客户端。我已经导入了包,但它显示错误。
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.WebResource;
我正在使用JDev环境。
尽管如此,当我运行我的代码时,它会抛出:
Error(3,33): package com.sun.jersey.api.client does not exist
import com.sun.jersey.api.client.WebResource;
任何建议为什么会抛出错误?
答案 0 :(得分:1)
首先你必须下载库,例如from here。然后,您可以按照this tutorial将库添加到项目中。 Jersey还依赖于其他库(包含在包中),因此请确保添加它们。