将PHP文件上传到IP地址

时间:2011-06-26 20:01:44

标签: java android eclipse

我想将一些文件上传到我设备的IP地址,但我不知道该怎么做。 所以,我需要将一个名为:base.php的.php文件上传到我的wifi手机上的IP地址。 然后我发送了一个POST方法,将我的图像字节数组解码回图像。

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new
HttpPost("http://10.0.2.2:80/android/base.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();

那么如何将我的php文件上传到WiFi Ip地址? 其次,是否可以更改此代码:

HttpPost("http://10.0.2.2:80/android/base.php");

为:

HttpPost("http://www.mywebsite.com/android/base.php");

并在那边收到图片?

1 个答案:

答案 0 :(得分:1)

嗨,我想我理解你的问题......你需要做的是将图像文件从服务器下载到你的设备上吗?...如果是这样,请尝试点击此链接know how to download a file from an url

希望这可以帮助你...