drq231358 2016-11-30 06:19
浏览 120
已采纳

Android开发的HTTP Post请求 - 帮助调试

I am attempting to access an Apache server through a button.

I am sending a message to the server and receiving a message back. I am displaying that message on a text field.

My code is not working and I do not know how to debug. I am attaching my code and PHP script. I am a beginner at this so any help will be appreciated.

public class MainActivity extends AppCompatActivity {


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

    }

    public void sendMessage(View view) {

        HttpURLConnection request = null;

        try {
            String myURL = "http://creative.colorado.edu/";
            URL url = new URL(myURL);

            request = (HttpURLConnection) url.openConnection();

            //To post output request
            request.setDoOutput(true);
            request.setRequestMethod("POST");
            request.setRequestProperty("message", "text/plain");

            String input = "I am ok";

            OutputStream outputPost = new BufferedOutputStream(request.getOutputStream());
            outputPost.write(input.getBytes());
            outputPost.flush();
            outputPost.close();

            BufferedReader in = new BufferedReader(new InputStreamReader(request.getInputStream()));
            String inputLine;
            while((inputLine = in.readLine()) != null){
                System.out.println(inputLine);
            }

            in.close();

            System.out.println(inputLine);

            TextView displayMessage = (TextView) findViewById(R.id.textView2);
            displayMessage.setText(in.toString());
        }

        catch (Exception ex) {
        }

        finally {
            if (request != null) {
                request.disconnect();
            }
        }

    }
}

Here is the PHP script I am using (I am not certain it is correct):

<?php

//Read request parameters
$message= $_POST[“message”];

// Store values in an array
$returnValue = array(“message”=>$message);

// Send back request in JSON format
echo json_encode($returnValue);

?>
  • 写回答

1条回答 默认 最新

  • dounue6984 2016-11-30 06:41
    关注

    Before you read from the input stream you need to actually make the http call.

    ...

    outputPost.close();

    request.connect()

    BufferedReader in = new BufferedReader(new InputStreamReader(request.getInputStream())); ...

    Also, any network calls need to be made in a background async thread. The Volley (https://developer.android.com/training/volley/simple.html) library makes this work dramatically easier.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 支付宝h5参数如何实现跳转
  • ¥15 MATLAB代码补全插值
  • ¥15 Typegoose 中如何使用 arrayFilters 筛选并更新深度嵌套的子文档数组信息
  • ¥15 前后端分离的学习疑问?
  • ¥15 stata实证代码答疑
  • ¥50 husky+jaco2实现在gazebo与rviz中联合仿真
  • ¥15 dpabi预处理报错:Error using y_ExtractROISignal (line 251)
  • ¥15 在虚拟机中配置flume,无法将slave1节点的文件采集到master节点中
  • ¥15 husky+kinova jaco2 仿真
  • ¥15 zigbee终端设备入网失败