如何从我的Android应用程序发布数据到服务器?

时间:2012-02-28 09:16:56

标签: android web-services post

我想将数据从Android应用程序发送到服务器(.NET),但它不起作用这是我的代码:

DefaultHttpClient hc=new DefaultHttpClient();  
ResponseHandler <String> res=new BasicResponseHandler();  
HttpPost postMethod=new HttpPost(myURl);  

postMethod.getParams().setParameter(CoreProtocolPNames.USE_EXPECT_CONTINUE, Boolean.FALSE);
postMethod.getParams().setBooleanParameter( "http.protocol.expect-continue", false );
postMethod.setHeader( "Content-Type", "application/json" );

JSONObject json = new JSONObject();

json.put("TOKEN", channel_token).toString();
json.put("APPLICATIONDATASOURCEID", data_src_id).toString();
json.put("NEWSTITLE", Title_edittext.getText().toString().trim()).toString();
json.put("NEWSDETAILS", Details_edittext.getText().toString()).toString();      
json.put("ALERTSTARTSAT" , "12/03/2012/05/12");
json.put("ALERTENDSAT", "13/03/2012/06/12");
json.put("SENDPUSHNOTIFICATION", true);
json.put("EXPIREIMMEDIATELY", true);

Log.i("jason Object", json.toString());

StringEntity se = new StringEntity(json.toString());
se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,"application/json"));
postMethod.setEntity(se);      

HttpResponse response = hc.execute(postMethod); 
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();
String _response = convertStreamToString(is);
System.out.println("res  " + _response);

将此作为来自服务器的响应“预期失败”。请告诉我问题在哪里。

3 个答案:

答案 0 :(得分:1)

设置您的Json请求如下:

final int TIMEOUT_MILLISEC = 10000;  // = 10 seconds

HttpParams httpParams = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParams, TIMEOUT_MILLISEC);
HttpConnectionParams.setSoTimeout(httpParams, TIMEOUT_MILLISEC);
HttpClient client = new DefaultHttpClient(httpParams);

HttpPost request = new HttpPost(myURl);

//set post request type
request.setHeader(HTTP.CONTENT_TYPE, "application/json; charset=utf-8");

//request result type
request.setHeader("Accept", "application/json; charset=utf-8");

JSONObject json = new JSONObject();
.
.
.
.
.
//and so on with rest of the code

答案 1 :(得分:0)

您必须使用WSDL Web服务在.NET Web服务器上发布数据,因为.NET框架不提供WSDL连接,并且它不支持像Java这样的直接HttpPost(myURL)

我希望this article会帮助你。

答案 2 :(得分:0)

如果您正在寻找教程,Android SDK附带了一个名为 Wikitionary 的示例应用程序。这是了解HTTP Get with JSON的一个很好的例子。