我创建应用程序以将文本发送到服务器并检查if(text != null)
返回新文本值。
我这样做的代码如下:
在PHP服务器中:
$text = $_POST["text1"];
if($text != null){
echo "Contact1-----".$text."-----10h49 25/03/2016 at New York city";
} else{
echo "";
}
之前,我在服务器上保存文件并将所有数据写入此文件。 这时,我希望它返回到android数据,不需要保存到文件。 在Android代码中是:
final String scripturlstring = "http://www.anyexample.com/main.php";
AddContactActivity contact;
public void sendToServer(final String text){
contact = new AddContactActivity();
new Thread(new Runnable() {
@Override
public void run() {
try {
String textparam = "text1=" + URLEncoder.encode(text, "UTF-8");
URL scripturl = new URL(scripturlstring);
HttpURLConnection connection = (HttpURLConnection) scripturl.openConnection();
connection.setDoOutput(true);
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
connection.setFixedLengthStreamingMode(textparam.getBytes().length);
contentWriter.write(textparam);
contentWriter.flush();
contentWriter.close();
InputStream answerInputStream = connection.getInputStream();
final String answer = getTextFromInputStream(answerInputStream);
if(answer!="") {
String[] contactInfo = answer.split("-----");
contact.insertContact(contactInfo[0], contactInfo[1], contactInfo[2], "", "");
}
answerInputStream.close();
connection.disconnect();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}).start();
}
public String getTextFromInputStream(InputStream is) {
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
StringBuilder stringBuilder = new StringBuilder();
String currentLine;
try {
while ((currentLine = reader.readLine()) != null) {
stringBuilder.append(currentLine);
stringBuilder.append("\n");
}
} catch (IOException e) {
e.printStackTrace();
}
return stringBuilder.toString().trim();
}
我不知道为什么answer
是null
。
我认为它必须返回如下数据:
Contact1 $text 10h49 25/03/2016 at New York city
答案 0 :(得分:1)
替换
$text = $_POST["text1"];
与
$text = $_REQUEST['text1'];
答案 1 :(得分:1)
保留Android部分并首先调试PHP代码。您没有发布数据,所以这绝对是错误的:
$text = $_POST["text1"];
使用$ _GET [" text1"]代替:
$text = $_GET["text1"];
你可以使用$ _REQUEST,但IMO这是一个不好的做法,因为它合并了$ _GET,$ _POST和$ _COOKIE变量。
答案 2 :(得分:0)
设置connection.setDoInput(true);