我有一个连接到localurl的AsyncTask类。连接不会返回任何异常。实际上,当我在eclipse上将以下代码作为普通的Java项目运行时,它运行得很好。
android studio中的代码:
package parsa.lop.adjust;
import android.os.AsyncTask;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;
public class SendDietInfo extends AsyncTask<String, Void, String> {
private PatientMain activity;
public SendDietInfo(PatientMain activity){
this.activity = activity;
}
@Override
protected String doInBackground(String... strings) {
try{
URL url = new URL("http://10.0.0.3/a.php/");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("POST");
con.setDoInput(true);
con.setDoOutput(true);
BufferedReader reader = new BufferedReader(
new InputStreamReader(con.getInputStream(),"UTF-8"));
StringBuilder str = new StringBuilder();
while(reader.ready()){
str.append(reader.readLine());
}
String s = str.toString();
reader.close();
System.out.println(s);
return s+",,,";
}catch(Exception e){
return e.getMessage();
}
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
activity.sendDietInfoDone(s);
}
}
并且在地址http://10.0.0.3/a.php/
中
<?php
echo "hello world"
?>
doInBackground
方法中的内部代码在eclipse中工作得很好,并返回hello world,但是android studio却不行。我补充说,我已经增加了互联网许可,同时也没有例外。问题是,您好世界不会返回。将打印一个空字符串。
答案 0 :(得分:0)
问题出在线路上
while(reader.ready()){
str.append(reader.readLine());
}
我刚刚将其更改为:
while((temp = reader.readLine())!= null){
str.append(temp);
}
显然,android运行的解释器与jvm不同。并且ready()函数的功能与jvm中的不同。