如何将jpg图像保存到SD卡中我自己的目录中

时间:2012-06-06 20:58:14

标签: android

我已将以下代码更新为以下行更改,但无效:

//设置Image位置

File file = new File(Environment.getExternalStorageDirectory() + "/Skynet/images/t1.jpg" );

Uri uriTarget = Uri.fromFile(file);

我想将jpeg保存到上面的目录中,但不知道,因为它正在使用媒体商店。任何提示这样做。

import android.app.Activity;
import android.content.ContentValues;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;

public class AndroCamera extends Activity {
   private static final int IMAGE_CAPTURE = 0;
   private Button startBtn;
   private Uri imageUri;
   private ImageView imageView;

/** Called when the activity is first created.
 *  sets the content and gets the references to
 *  the basic widgets on the screen like
 *  {@code Button} or {@link ImageView}
 */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    imageView = (ImageView)findViewById(R.id.img);
    startBtn = (Button) findViewById(R.id.startBtn);
    startBtn.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            startCamera();
        }
    });
}

public void startCamera() {
    Log.d("ANDRO_CAMERA", "Starting camera on the phone...");
    String fileName = "testphoto.jpg";
    ContentValues values = new ContentValues();
    values.put(MediaStore.Images.Media.TITLE, fileName);
    values.put(MediaStore.Images.Media.DESCRIPTION,
            "Image capture by camera");
    values.put(MediaStore.Images.Media.MIME_TYPE, "image/jpeg");
    imageUri = getContentResolver().insert(
            MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
    Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
    intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
    startActivityForResult(intent, IMAGE_CAPTURE);
}

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == IMAGE_CAPTURE) {
        if (resultCode == RESULT_OK){
            Log.d("ANDRO_CAMERA","Picture taken!!!");
            imageView.setImageURI(imageUri);
        }
    }
}

}

1 个答案:

答案 0 :(得分:4)

那是因为您使用的Uri来自媒体管理员,也许如果您使用要保存的已定义的Uri,它应该可以使用。 这是一个提示:

mImageUri= Uri.fromFile( new File( Environment.getExternalStorageDirectory(),
                        "pic_" + String.valueOf( System.currentTimeMillis() ) + ".jpg" ) );

在此已保存到根目录,但由于您正在创建该文件,因此您可以将其放在任何您想要的位置。只需确保目录存在,否则创建它。 正如@Simon所说,请确保您有权在外部存储上书写。

更新1: 目前你有类似的东西:

imageUri = getContentResolver().insert(
            MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);

所以插入只是将图像插入MediaStore表...但如果那是你真正需要的,那么你需要覆盖Data中的MediaStore列。 添加contentValues这样的内容:

values.put( MediaStore.Images.ImageColumns.DATA, fullPath );

如果您不需要使用MediaStore表,则无需执行插入操作,因此不需要ContentValues