我调用webservice中返回字符串"true“或"false”的方法,并使用以下代码获取两个参数
String isLogedin = readTwitterFeed();
public String readTwitterFeed() {
String Result = null;
StringBuilder URL = new StringBuilder();
URL.append("http://localhost:1539/WCFService1/Service.svc/Login/");
URL.append(username.getText());
URL.append("/");
URL.append(password.getText());
/////////////////////////////
HttpClient client = new DefaultHttpClient();
HttpGet httpGet = new HttpGet(
URL.toString());
try {
HttpResponse response = client.execute(httpGet);
StatusLine statusLine = response.getStatusLine();
int statusCode = statusLine.getStatusCode();
if (statusCode == 200) {
HttpEntity entity = response.getEntity();
InputStream content = entity.getContent();
BufferedReader reader = new BufferedReader(
new InputStreamReader(content));
StringBuilder builder = null ;
String line = null;
while ((line = reader.readLine()) != null) {
builder.append(line);
}
Result = builder.toString() ;
} else {
Result = "error";
}
} catch (ClientProtocolException e) {
Result = "error";
e.printStackTrace();
} catch (IOException e) {
Result = "error";
e.printStackTrace();
}
return Result;
}
但返回的字符串始终为空
我知道为什么它不返回数据,也不显示任何错误(我在textview上显示返回值),我也这样设置了互联网的权限
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
并且我确信服务正在运行
发布于 2012-05-20 16:47:33
Localhost
和127.0.0.1
是Android emulated device's
自己的环回接口,换句话说,你通过localhost
或127.0.0.1
连接到安卓仿真设备(而不是你的计算机)。如果您正在尝试访问开发机器,请使用10.0.2.2.
在你的代码中有一件事你没有初始化你的StringBuilder builder
像StringBuilder builder = new StringBuilder();
一样初始化它
https://stackoverflow.com/questions/10673773
复制