我有一个简单的 PHP 服务,我试图从 Android 应用程序中访问,我想通过 POST 参数传递原始图像。我有一个 PHP/curl 脚本工作,它执行以下操作:
$url = "http://myphp.php"
$imagefilepath = 'path_to_png_file.png';
$imagedata = file_get_contents($imagefilepath);
$data = array('imagedata' => $imagedata);
// a few other fields are set into $data, but not important
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 GTB5');
curl_exec($ch);
我想在我的 Android 应用程序中使用 AsyncHttpClient (http://loopj.com/android-async-http/) 在 Java 中模仿这一点。
听起来很简单,我可以在 Java 中调用,但问题是我发送的数据在另一端没有被识别为图像。但是,使用上面的 PHP/Curl 脚本,它在所有方面都可以正常工作。
这是我的 Java 代码,其中有一些我尝试过的注释掉的东西:
String photoFilePath = "path_to_my_photo_on_disk.jpg";
Bitmap bm = BitmapFactory.decodeFile(photoFilePath);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bm.compress(Bitmap.CompressFormat.JPEG, 50, baos);
byte[] byteArrayPhoto = baos.toByteArray();
AsyncHttpClient client = new AsyncHttpClient(context);
RequestParams params = new RequestParams();
try {
// THINGS I HAVE TRIED (AND FAILED):
//params.put("imagedata", new File(photoFilePath));
//params.put("imagedata", new ByteArrayInputStream(byteArrayPhoto), "photo.jpg");
//params.put("imagedata", new String(byteArrayPhoto));
//params.put("imagedata", new String(byteArrayPhoto, "UTF-8"));
//params.put("imagedata", fileToString(photoFilePath));
//params.put("imagedata", new FileInputStream(new File(photoFilePath)), "photo.jpg", "image/jpeg");
} catch (Exception e) {
e.printStackTrace();
}
client.post(context, myURL, params, new AsyncHttpResponseHandler() {
...override methods, onSuccess() is called...
}
// for reference, for the above-called method:
private String fileToString(String filename) throws IOException
{
BufferedReader reader = new BufferedReader(new FileReader(filename));
StringBuilder builder = new StringBuilder();
String line;
// For every line in the file, append it to the string builder
while((line = reader.readLine()) != null)
{
builder.append(line);
}
return builder.toString();
}
- 请注意,在上面的一些已注释掉的行/尝试中,POST 参数甚至没有将其传递到另一侧。
我还尝试了一些其他方法将文件放入字节数组,以及对文件进行编码(base64),但没有成功。无论出于何种原因,调用成功并传输了数据,但是每次我们尝试在服务器端打开图像时,它都已损坏和/或无法以 JPG 格式打开。我尝试过大大小小的图像文件。
我确实进行了研究并尝试了许多我发现的解决方案,但似乎没有任何效果。我确定我在这里遗漏了一些明显的东西,但是任何人都可以引导我朝着正确的方向前进吗?
任何帮助将不胜感激!!