資源簡介
完整代碼,包括jar包,下載即可運行!有什么不妥的,歡迎大家評論批評!
代碼片段和文件信息
package?com.cxftest;
import?org.apache.commons.httpclient.HttpClient;
import?org.apache.commons.httpclient.methods.GetMethod;
public?class?TestMain?{
/**?
?
?*?@title:?main?
?
?*?@Description:?TODO(這里用一句話描述這個方法的作用)?
?
?*?@param?@param?args?設定文件?
?
?*?@return?void?返回類型?
?
?*?@throws?
?
?*/
public?static?void?main(String[]?args)?{
//?TODO?Auto-generated?method?stub
try?{
all();
}?catch?(Exception?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}
}
public?static?void?all()?throws?Exception{?
GetMethod?get?=?new?GetMethod(“http://localhost:8080/cxftest/services/user/query/1/1/1“);?
get.setRequestHeader(“accept““application/json“);?
HttpClient?hc?=?new?HttpClient();?
hc.getParams().setContentCharset(“UTF-8“);?//設置編碼?
int?code?=?hc.executeMethod(get);?
System.err.println(“返回的狀態碼:“+code);?
if(code==200){?
String?str?=?get.getResponseBodyAsString();?
System.err.println(“返回信息:\n“+str);?
}?
get.releaseConnection();?
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2013-05-10?09:30??cxftest\
?????文件????????7406??2013-05-07?10:24??cxftest\.classpath
?????目錄???????????0??2013-05-02?11:16??cxftest\.myeclipse\
?????文件?????????294??2013-05-02?11:16??cxftest\.myme
?????文件????????1413??2013-05-02?11:20??cxftest\.project
?????目錄???????????0??2013-05-10?09:30??cxftest\.settings\
?????文件?????????500??2013-05-02?11:16??cxftest\.settings\.jsdtscope
?????文件??????????88??2013-05-02?11:17??cxftest\.settings\org.eclipse.core.resources.prefs
?????文件?????????629??2013-05-02?11:18??cxftest\.settings\org.eclipse.jdt.core.prefs
?????文件??????????49??2013-05-02?11:16??cxftest\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2013-05-02?11:16??cxftest\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????目錄???????????0??2013-05-10?09:30??cxftest\src\
?????目錄???????????0??2013-05-10?09:30??cxftest\src\com\
?????文件??????????95??2012-01-31?15:55??cxftest\src\commons-logging.properties
?????目錄???????????0??2013-05-10?09:30??cxftest\src\com\cxftest\
?????目錄???????????0??2013-05-10?09:30??cxftest\src\com\cxftest\dao\
?????文件?????????447??2013-05-10?09:28??cxftest\src\com\cxftest\dao\AdminDao.java
?????文件????????1771??2013-05-10?09:28??cxftest\src\com\cxftest\dao\ba
?????目錄???????????0??2013-05-10?09:30??cxftest\src\com\cxftest\dao\impl\
?????文件?????????848??2013-05-10?09:28??cxftest\src\com\cxftest\dao\impl\AdminDaoImpl.java
?????文件????????4580??2013-05-10?09:28??cxftest\src\com\cxftest\dao\impl\ba
?????目錄???????????0??2013-05-10?09:30??cxftest\src\com\cxftest\entity\
?????文件????????6194??2013-05-10?09:28??cxftest\src\com\cxftest\entity\Admin.java
?????文件????????2637??2013-05-10?09:28??cxftest\src\com\cxftest\entity\ba
?????目錄???????????0??2013-05-10?09:30??cxftest\src\com\cxftest\filter\
?????文件????????1897??2013-05-10?09:28??cxftest\src\com\cxftest\filter\EncodingConvertFilter.java
?????目錄???????????0??2013-05-10?09:30??cxftest\src\com\cxftest\service\
?????文件?????????790??2013-05-10?09:27??cxftest\src\com\cxftest\service\AdminService.java
?????文件????????1686??2013-05-10?09:27??cxftest\src\com\cxftest\service\ba
?????目錄???????????0??2013-05-10?09:30??cxftest\src\com\cxftest\service\impl\
?????文件????????1597??2013-05-10?09:27??cxftest\src\com\cxftest\service\impl\AdminServiceImpl.java
............此處省略160個文件信息
評論
共有 條評論