客户端的话可以使用java.net.HttpURLConnection或者是Apache的HttpClient,推大蔽荐使用HttpClient。
以下是HttpClient发起post请求的方式
private String doPost(NameValuePair[] params, String url) {
HttpClient client = new HttpClient()
PostMethod post = new PostMethod(url)
post.addParameters(params)
try {
int status = client.executeMethod(post)
if (HttpStatus.SC_OK == status) {
String responseText = new String(post.getResponseBody(),
Configuration.httpencoding)
logger4pa.debug(responseText)
post.releaseConnection()
return responseText
} else {
return "扮仿帆GUI.commons.systemBusy"
}
} catch (HttpException e) {
logger4pa.error("LOG.proxy.dynamicPassword.disconnected")
return "GUI.commons.systemBusy"
} catch (IOException e) {
logger4pa.error("LOG.proxy.dynamicPassword.disconnected")
return "GUI.commons.systemBusy"
}
}
我看过一个项目,里面是运用带御Applet这个东西把它嵌入到网页中,在键消jsp中貌似写一个Applet的标签,并制定是哪个类就可以了。。没有具体研究过。稿行知楼主可以往这个方向深入学习一下。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)