商量:應用httpClient在客戶端與辦事器端傳輸對象參數的詳解。本站提示廣大學習愛好者:(商量:應用httpClient在客戶端與辦事器端傳輸對象參數的詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是商量:應用httpClient在客戶端與辦事器端傳輸對象參數的詳解正文
昨天把httpClient的源代碼下載來看了一下。 略微跟蹤了一下,終究照樣應用java.net包的器械.不外封裝的其實是英俊.寫法式便利多了。不外照樣建議最好先熟習net包下的器械.為了測試寫了個在客戶端和辦事器段傳對象的代碼. 簡略的傳遞了一個字符串. 假如龐雜點可以傳其他的對象,在參數裡給出class name之類的信息.辦事器端便可以應用反射來做一些適用的操作了。
客戶端:
import java.io.IOException;
import java.io.Serializable;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.methods.InputStreamRequestEntity;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.methods.RequestEntity;
public class MyTest
{
/**
* @param args
* @throws IOException
* @throws ClassNotFoundException
*/
public static void main(String[] args) throws IOException, ClassNotFoundException
{
String url = "http://localhost:8084/system/linantest";
String queryString = "test=hello";
String inputObj = " boy!";
Serializable s = getObjFromServer(url, queryString, inputObj);
System.out.println(s.toString());
}
/**
* @param url
* @param queryString 相似a=b&c=d 情勢的參數
*
* @param inputObj 發送到辦事器的對象。
*
* @return 辦事器前往到客戶真個對象。
* @throws IOException
*/
public static Serializable getObjFromServer(String url, String queryString, Serializable inputObj) throws IOException
{
HttpClient client = new HttpClient();
PostMethod post = new PostMethod(url);
post.setQueryString(queryString);
post.setRequestHeader("Content-Type", "application/octet-stream");
java.io.ByteArrayOutputStream bOut = new java.io.ByteArrayOutputStream(1024);
java.io.ByteArrayInputStream bInput = null;
java.io.ObjectOutputStream out = null;
Serializable returnObj = null;
try
{
out = new java.io.ObjectOutputStream(bOut);
out.writeObject(inputObj);
out.flush();
out.close();
out = null;
bInput = new java.io.ByteArrayInputStream(bOut.toByteArray());
RequestEntity re = new InputStreamRequestEntity(bInput);
post.setRequestEntity(re);
client.executeMethod(post);
java.io.InputStream in = post.getResponseBodyAsStream();
java.io.ObjectInputStream oInput = new java.io.ObjectInputStream(in);
returnObj = (Serializable) oInput.readObject();
oInput.close();
oInput = null;
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (ClassNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
finally
{
if (out != null)
{
out.close();
out = null;
}
if (bInput != null)
{
bInput.close();
bInput = null;
}
//釋放銜接
post.releaseConnection();
}
return returnObj;
}
}
辦事器真個servlet
package test.li;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.openjweb.eai.adapter.TimerDBAdapter;
public class TestServlet extends HttpServlet
{
public TestServlet()
{
super();
}
/**
* Destruction of the servlet. <br>
*/
public void destroy()
{
super.destroy(); // Just puts "destroy" string in log
// Put your code here
}
/**
* The doGet method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to get.
*
* @param request
* the request send by the client to the server
* @param response
* the response send by the server to the client
* @throws Exception
*/
public void doGet(HttpServletRequest request, HttpServletResponse response)
{
String test = request.getParameter("test");
java.io.ObjectInputStream oi = null;
java.io.ObjectOutputStream ot = null;
try
{
oi = new java.io.ObjectInputStream(request.getInputStream());
Object o = oi.readObject();
oi.close();
oi = null;
String outObj = test + o.toString();
ot = new java.io.ObjectOutputStream(response.getOutputStream());
ot.writeObject(outObj);
ot.flush();
ot.close();
ot = null;
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (ClassNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
finally
{
try
{
if (oi != null)
{
oi.close();
oi = null;
}
if (ot != null)
{
ot.close();
ot = null;
}
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
/**
* The doPost method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to
* post.
*
* @param request
* the request send by the client to the server
* @param response
* the response send by the server to the client
* @throws ServletException
* if an error occurred
* @throws IOException
* if an error occurred
*/
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
doGet(request, response);
}
/**
* Initialization of the servlet. <br>
*
* @throws ServletException
* if an error occure
*/
public void init() throws ServletException
{
// Put your code here
}
}