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.

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

报告相同问题?

悬赏问题

  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?