我一直在寻找一个程序来上传我用相机拍摄的照片,并以位图的形式存储到我自己的网站。我尝试了以下代码,但没有成功。
public void onClick(View v) {
ByteArrayOutputStream bytearrayStream = new ByteArrayOutputStream();
bitmapPicture.compress(Bitmap.CompressFormat.JPEG, 90, bytearrayStream);
byte [] byteArray = bytearrayStream.toByteArray();
String byteArrayToString = Base64.encodeBytes(byteArray);
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("image", byteArrayToString));
try{
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://www.mywebsite.com/upload_image.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
stream = entity.getContent();
Toast text = Toast.makeText(getApplicationContext(), "OK", Toast.LENGTH_LONG);
text.show();
}
catch(Exception e){
Log.e("log_tag", "Error in http connection " + e.toString());
Toast text = Toast.makeText(getApplicationContext(), "FOUT", Toast.LENGTH_LONG);
text.show();
}
}
我在网站端使用的 php 代码是
<?php
$base=$_REQUEST['image'];
echo $base;
// base64 encoded utf-8 string
$binary=base64_decode($base);
// binary, utf-8 bytes
header('Content-Type: bitmap; charset=utf-8');
// print($binary);
//$theFile = base64_decode($image_data);
$file = fopen('test.jpg', 'wb');
fwrite($file, $binary);
fclose($file);
echo '<img src=test.jpg />';
?>
如果我在 localhost 上尝试 php 文件,它会生成一个 test.jpg。所以我认为如果$_REQUEST['image']
不为空,则会创建正确的文件。
如果尝试区域中没有错误,我的 androidprogram 会显示一个 toasttext 'OK'。如果有错误,它会显示“FOUT”。在我的 Xperia 上测试时,它总是显示 OK...
有什么建议么?