您好,我的网站部分描述如下:
<div id="insertA">
<form class="MultiFile-intercepted" enctype="multipart/form-data"
method="post" onsubmit="return checkAnomalyFields();"
action="dodajN.html">
<table style="border-weight: 0px">
<tbody>
<tr>
<tr>
<td id="wybory"><select id="typ" onchange="typeSelected()" size="1"
name="typuId">
</td>
<td>
</tr>
<tr>
<td>Szerokość: <input id="szer" type="text" onchange="setMarker()"
value="" name="szer">
<div id="szerErr" class="err">Proszę podać szerokość na terenie
Polski (49-55).</div>
</td>
<td>Długość: <input id="dlug" type="text" onchange="setMarker()"
value="" name="dlug">
<div id="dlugErr" class="err">Proszę podać długość na terenie
Polski (14-25).</div> <input id="id" type="hidden" value=""
name="id">
</td>
</tr>
我想发出HTTP POST请求,以便从我的客户端发送数据并将其放入表单中。 我这样做如下:
try {
HttpClient client = new MyHttpClient(Send.this);
String postURL = "url";
HttpPost post = new HttpPost(postURL);
//FileBody bin = new FileBody(file);
MultipartEntity reqEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
//reqEntity.addPart("myFile", bin);
reqEntity.addPart("typuId", new StringBody("1"));
reqEntity.addPart("statusuId", new StringBody("2"));
reqEntity.addPart("szer", new StringBody("52.321911"));
reqEntity.addPart("dlug", new StringBody("19.464111000000003"));
reqEntity.addPart("opis", new StringBody("jakis opis"));
post.setEntity(reqEntity);
HttpResponse response = client.execute(post);
HttpEntity resEntity = response.getEntity();
AlertDialog.Builder alert=new AlertDialog.Builder(Send.this);
alert.setTitle("Niepoprawne dane").setMessage(EntityUtils.toString(resEntity)).setNeutralButton("OK", null).show();
if (resEntity != null) {
Log.i("RESPONSE",EntityUtils.toString(resEntity));
}
} catch (Exception e) {
e.printStackTrace();
}
问题是当我阅读响应时,我得到了我要求的网站的HTML代码而没有成功代码或类似的东西。看起来我要求网站内容,但不提交表单。知道我做错了吗?
答案 0 :(得分:3)
您正在提交.html
个文件。通常,服务器未配置为将这些文件视为脚本,这意味着您提交的数据将被忽略并转储。要处理表单提交,您必须提交一个脚本或专门用于处理该提交的其他程序,例如一个PHP脚本。
答案 1 :(得分:0)
好的,澄清马克B说的话:action="dodajN.html"
几乎肯定是错的。我从来没有见过让你这样做的网络服务器(当然,一切皆有可能)。它应该是action="cgi-bin/something"
或类似的东西。
然而,实际上并不重要,因为你的应用程序无论如何都没有使用action
子句,而是写入“url”,这更加错误。如果你准确地告诉我们你真正写的是什么网址,那可能会有所帮助。
但最终,您调试此方法的方法是查看服务器日志,看看目前发生了什么。
作为一般规则,当我开发这样的东西时,我首先编写服务器端cgi脚本和一个网页来使用它。一旦我的API在网页上工作,我才开始尝试从Android应用程序调用cgi脚本。
我的调试过程包括:1)读取服务器日志。 2)让我的cgi脚本编写自己的调试日志。 3)让我的Android应用程序将响应代码和标题转储到logcat。