我有一个存储在Wamp服务器中的PHP脚本,并希望我的应用程序执行它以从服务器执行一些图像处理,然后服务器将结果发送到Android手机。 这有可能吗?如果可以,请提供一些提示吗?
非常感谢。
答案 0 :(得分:8)
只需执行HTTP get请求:
String url = "http://your.domain.com/path/to/file.php";
HttpClient client = new DefaultHttpClient();
try {
client.execute(new HttpGet(url));
} catch(IOException e) {
//do something here
}
答案 1 :(得分:1)