【问题标题】:Sending Parameter using POST method in Android在 Android 中使用 POST 方法发送参数
【发布时间】:2016-03-18 08:08:38
【问题描述】:

我想使用 POST 方法向服务器发送一个参数。

我正在使用 ServiceHandler.java 文件来处理请求

public class ServiceHandler {

    static String response = null;
    public final static int GET = 1;
    public final static int POST = 2;

    public ServiceHandler() {

    }

    /**
     * Making service call
     * @url - url to make request
     * @method - http request method
     * */
    public String makeServiceCall(String url, int method) {
        return this.makeServiceCall(url, method, null);
    }

    /**
     * Making service call
     * @url - url to make request
     * @method - http request method
     * @params - http request params
     * */
    public String makeServiceCall(String url, int method,
                                  List<NameValuePair> params) {
        try {
            // http client
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpEntity httpEntity = null;
            HttpResponse httpResponse = null;

            // Checking http request method type
            if (method == POST) {
                HttpPost httpPost = new HttpPost(url);

                // adding post params
                if (params != null) {
                    httpPost.setEntity(new UrlEncodedFormEntity(params));
                }

                httpResponse = httpClient.execute(httpPost);

            } else if (method == GET) {
                // appending params to url
                if (params != null) {
                    String paramString = URLEncodedUtils
                            .format(params, "utf-8");
                    url += "?" + paramString;
                }
                HttpGet httpGet = new HttpGet(url);

                httpResponse = httpClient.execute(httpGet);

            }
            httpEntity = httpResponse.getEntity();
            response = EntityUtils.toString(httpEntity);

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        return response;

    }
}

我正在从我的 Activity 文件中传递参数

// BACKGROUND EXECUTION STARTS
        @Override
        protected Void doInBackground(Void... arg0) {


            // Creating service handler class instance
            ServiceHandler sh = new ServiceHandler();

           List<NameValuePair> params = new ArrayList<NameValuePair>();
            params.add(new BasicNameValuePair("pkey", "pvalue"));
            sh.makeServiceCall(url, ServiceHandler.POST, params);


            // Making a request to url and getting response
            String jsonStr = sh.makeServiceCall(url, ServiceHandler.POST);

            Log.d("Response: ", "> " + jsonStr);

我能够连接到我的服务器,但它没有从我的应用程序接收任何参数。

有人可以修改它并发送工作代码吗 谢谢你

【问题讨论】:

    标签: java android json xml http


    【解决方案1】:

    尝试使用此代码:

    ServiceHandler sh = new ServiceHandler();
    List<NameValuePair> params = new ArrayList<NameValuePair>();
    
    @Override
    protected void onPreExecute() {
        // TODO Auto-generated method stub
        super.onPreExecute();
    
    
        params.add(new BasicNameValuePair("pkey", "pvalue"));
    
    }
    
    @Override
    protected String doInBackground(String... param) {
            // TODO Auto-generated method stub
            String json;
            try {
                json = sh.makeServiceCall(url, ServiceHandler.POST, params);
    
                Log.d("Response: ", "> " + json);
    
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
    
            return null;
        }
    
    @Override
    protected void onPostExecute(String result) {
        // TODO Auto-generated method stub
        super.onPostExecute(result);
    
    
        }
    

    【讨论】:

      【解决方案2】:

      /* 在您的服务处理程序类中更改这一行*/

      public JSONObject makeHttpRequest(String url, String method,
      List<NameValuePair> params) {
      if(method == "POST"){
      }else if(method == "GET"){
      }
      }
      

      /* 关于你在 doinbackground 中的活动类*/

      sh.makeServiceCall(url,"POST", params);
      

      【讨论】:

        【解决方案3】:

        你应该改用 HttpUrlConnection :

        public class MessageSender {
            private int responseCode;
        
        
            public boolean sendPost(YourParameter param) {
        
                HttpURLConnection connection;
                try {
                    URL gcmAPI = new URL("your api url");
                    connection = (HttpURLConnection) gcmAPI.openConnection();
        
                    connection.setRequestMethod("POST");
                    connection.setRequestProperty("Content-Type", "application/json");
                                  connection.setDoOutput(true);
        
                    ObjectMapper mapper = new ObjectMapper();
                    mapper.setVisibility(PropertyAccessor.FIELD, JsonAutoDetect.Visibility.ANY);
                    DataOutputStream dataOutputStream = new DataOutputStream(connection.getOutputStream());
        
                    mapper.writeValue(dataOutputStream, param);
        
                    dataOutputStream.flush();
                    dataOutputStream.close();
        
                    responseCode = connection.getResponseCode();
                } catch (IOException e) {
                    e.printStackTrace();
                }
                if (responseCode == 200) {
                    Log.i("Request Status", "This is success response status from server: " + responseCode);
                    return true;
                } else {
                    Log.i("Request Status", "This is failure response status from server: " + responseCode);
                    return false;
                }
            }
        }
        

        在你的活动中:

        MessageSender mgsSender = new MessageSender();
                            new AsyncTask<Void, Void, Void>() {
                                @Override
                                protected Void doInBackground(Void... params) {
        
                                    mgsSender.sendPost(mgsContent);
        
                                    }
                                    return null;
                                }
                            }.execute();
        

        【讨论】:

          猜你喜欢
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 2020-03-18
          • 2012-12-25
          • 1970-01-01
          • 2013-04-07
          相关资源
          最近更新 更多