我想将图像显示为从 servlet 到 android 应用程序的布尔值。Servlet 将被上传到谷歌应用引擎。这是我的小服务程序。“arrBool”值显示为一些随机值。
//
resp.setContentType("text/plain");
if (req.getParameterMap().containsKey("message"))
message = req.getParameter("message");
resp.getWriter().println("Server Said" + message);
for (int i=0; i<arrBool.length; i++) {
arrBool[i] = r.nextBoolean();
if(arrBool[i]==true) {
resp.getWriter().print(arrBool);
}
}
这是我的 android 应用程序文件:
//
RestClient client = new RestClient("http://machougul01.appspot.com/listenforrestclient");
client.AddParam("message", "Hello two World");
// client.AddParam("arrBool", "textView1");
try
{
client.Execute(RequestMethod.GET);
}
catch (Exception e)
{
textView.setText(e.getMessage());
}
String response = client.getResponse();
textView.setText(response);
}
输出显示“服务器说:Hello two world”和 arrBool 值:“m9a9990a m9a9990” 我想将 arrBool 值设置为图像而不是 m9a9990a。因此,无论何时选择随机值(如果为真),那么汽车的数量将显示为 1 - 6 (共 6 辆)。请帮我解决这个问题。