繁体   English   中英

为什么在此代码中我没有从服务器得到任何响应

[英]Why I'm not getting any response from server in this code

 public  String POST(String url){
    InputStream inputStream = null;
    String result = "";
    try {

        // 1. create HttpClient
        HttpClient httpclient = new DefaultHttpClient();

        // 2. make POST request to the given URL
        HttpPost httpPost = new HttpPost(url);

        String json = "";

        // 3. build jsonObject
        JSONObject jsonObject = new JSONObject();
        jsonObject.accumulate("UserName","example@gmail.com");
        jsonObject.accumulate("Password","123456!");


        // 4. convert JSONObject to JSON to String
        json = jsonObject.toString();

        // ** Alternative way to convert Person object to JSON string usin Jackson Lib 
        // ObjectMapper mapper = new ObjectMapper();
        // json = mapper.writeValueAsString(person); 

        // 5. set json to StringEntity
        StringEntity se = new StringEntity(json);

        // 6. set httpPost Entity
        httpPost.setEntity(se);

        // 7. Set some headers to inform server about the type of the content   
        httpPost.setHeader("Accept", "application/json");
        httpPost.setHeader("Content-type", "application/json");

        // 8. Execute POST request to the given URL
        HttpResponse httpResponse = httpclient.execute(httpPost);

        Toast.makeText(getBaseContext()," text",Toast.LENGTH_SHORT).show();
        // 9. receive response as inputStream
        inputStream = httpResponse.getEntity().getContent();

        // 10. convert inputstream to string
        if(inputStream != null)
            result = convertInputStreamToString(inputStream);
        else
            result = "Did not work!";

    } catch (Exception e) {
        Log.d("InputStream", e.getLocalizedMessage());
    }

    // 11. return result
    return result;
}
 private class HttpAsyncTask extends AsyncTask<String, Void, String> {
    @Override
    protected String doInBackground(String... urls) {

     // Toast.makeText(getBaseContext(), "post invoked", Toast.LENGTH_SHORT).show();
        return POST(urls[0]);
    }
    // onPostExecute displays the results of the AsyncTask.
    @Override
    protected void onPostExecute(String result) {
        Toast.makeText(getBaseContext(), "Data Sent!"+result+" don", Toast.LENGTH_LONG).show();
   }
}

我尝试从HTTPAsyncTask类的对象调用此POST方法,并传递了目标url。 但是,在OnPostExecute()中执行的Toast弹出消息“数据已发送!完成”,该消息告诉'result'变量的值为null。 并在日志猫中显示“我从日志猫中得到了反馈,即“请求时间失败,Java.net.socketException:协议不支持Addres系列”。这是什么问题?有人可以解决此问题吗?

尝试将其添加到AndroidManifest.xml

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

并且请捕获此异常:

catch(SocketException se)
       {
         Log.e("Exception ---- : " , "Error on execute??" + se.getMessage());
           se.printStackTrace();
       }

URL缺少协议部分。 尝试

http://devcare.dyndns.info:85/WCFServices/UserAuthServices.svc/Login

否则devcare.dyndns.info将被误认为协议。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM