我的申请有两个方面;1> gcmserver & 2> AppDevice,我在我的应用程序中使用谷歌的 GCM(gcmserver 和 AppDevice)+ 使用两个不同的系统(一个用于 gcmserver,另一个用于 AppDevice)。
现在的问题是:
在我的服务器端有 java 页面(http://192.168.1.111:8080/gcmserver/HomeServlet.java)。[192.168.1.111(即 gcmserver)是我的本地主机] 我使用的是 Tomcat 6.0.35
我正在使用这段代码从 AppDevice 端分配该页面中的值:
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("employeeid", getempid));
nameValuePairs.add(new BasicNameValuePair("password", getpsssword));
// String URL_STRING="http://192.168.0.151:8080/map/jsp/passwordget.jsp";
String URL_STRING="http://192.168.1.111:8080/gcmserver/HomeServlet.java";
HttpClient hc = new DefaultHttpClient();
HttpPost post = new HttpPost(URL_STRING);
post.setEntity(new UrlEncodedFormEntity(nameValuePairs, HTTP.UTF_8));
HttpResponse rp = hc.execute(post);
现在我真的想从这个页面中检索分配给它的值(这里:“employeeid”,“password”)。
他们有什么方法可以从此页面实现这些值,还是我必须使用Jsoup
它......//