Befor我使用直接管理面板, 现在我把它改成了cpanel; 好吧,现在我的问题是我无法使用post方法向该主机发送任何数据; 从HTML格式工作正常!但是android无法正常工作! 任何菩提都可以帮助我解决这个问题
Get方法工作正常,但我必须使用post方法。 必需参数: 电子邮件 通过 名称 家族
如果Currect它会显示成功! 如果显示存在它不起作用。
答案 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();
}
}