我有以下内容:从我的第一个活动开始,我从相机中取出一个图像然后打开一个新活动,其中iage应该被预览并作为httpPOST请求中的FILE参数上传到服务器。
在我的第一个活动中,我正在使用此代码:
public void onClick(View v) {
String fileName = "temp.jpg";
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE,fileName);
mCapturedImageURI = getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,values);
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent,RESULT_LOAD_IMAGE_FROM_CAMERA);
}
和 onMyActivityResult 我有:
if (requestCode == RESULT_LOAD_IMAGE_FROM_CAMERA
&& resultCode == RESULT_OK && null != data) {
System.out.println("Photo selected from the camera");
String[] projection = {MediaStore.Images.Media.DATA};
//Uri selectedImage = data.getData();
Cursor cursor = getContentResolver().query(mCapturedImageURI, projection, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
//int columnIndex = cursor.getColumnIndex(projection[0]);
//file path of captured image
picturePath = cursor.getString(columnIndex);
//file path of captured image
File f = new File(picturePath);
String filename = f.getName();
Toast.makeText(CommunityMain.this, "Your Path:"+picturePath, 2000).show();
Toast.makeText(CommunityMain.this, "Your Filename:"+filename, 2000).show();
cursor.close();
Intent myIntent = new Intent(CommunityMain.this,PhotoPostActivity.class);
startActivity(myIntent);
图像保存在图库中,我确实看到了picturePath。
当我的photoPost活动打开时,我确实有:
f = new File(CommunityMain.picturePath);
System.out.println("Picture path:"+CommunityMain.picturePath);
ImageButton image = (ImageButton) findViewById(R.id.photo1);
image.setImageBitmap(BitmapFactory
.decodeFile(CommunityMain.picturePath));
图片路径相同,但我的ImageButton未设置。
我知道了:
12-08 17:37:22.670: E/BitmapFactory(13357): Unable to decode stream: java.io.FileNotFoundException: /storage/emulated/0/DCIM/Camera/1386524213331.jpg: open failed: ENOENT (No such file or directory)
但路径与toast消息相同。我错过了什么?
我需要能够获取文件f,因为我需要为我的HttpPost请求。
编辑:问题出在picturePath上。我得到的与图像保存方式不同? 我看到一个像上面那样的数字,照片中的实际路径就像IMG_2313.jpg一样。
答案 0 :(得分:1)
你应该使用不同的技术。尝试为相机提供一个文件网址,您希望像这样写入图像:https://stackoverflow.com/a/16392587/693752。接下来,阅读该文件而不是阅读相机提供的内容。