Android无法将Post Data发送到服务器

时间:2016-06-13 07:52:32

标签: android json http-post cpanel android-json

Befor我使用直接管理面板, 现在我把它改成了cpanel; 好吧,现在我的问题是我无法使用post方法向该主机发送任何数据; 从HTML格式工作正常!但是android无法正常工作! 任何菩提都可以帮助我解决这个问题

Get方法工作正常,但我必须使用post方法。 必需参数: 电子邮件 通过 名称 家族

如果Currect它会显示成功! 如果显示存在它不起作用。

1 个答案:

答案 0 :(得分:0)

你可以这样做:

HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
   try {
     urlConnection.setDoOutput(true);
     urlConnection.setChunkedStreamingMode(0);

     OutputStream out = new BufferedOutputStream(urlConnection.getOutputStream());
     writeStream(out);

     InputStream in = new BufferedInputStream(urlConnection.getInputStream());
     readStream(in);
    finally {
     urlConnection.disconnect();
   }
 }