gpt4 book ai didi

java - 如何在android中将 `content://media/external/images/media/Y`转换为 `file:///storage/sdcard0/Pictures/X.jpg`?

转载 作者:IT老高 更新时间:2023-10-28 21:02:20 30 4
gpt4 key购买 nike

我正在尝试将图像从我的 Android 应用上传到 Google 云端硬盘,

基于此tutorial .

当我调试他们的示例项目时,我看到了一个典型的 fileUri =

file:///storage/sdcard0/Pictures/IMG_20131117_090231.jpg

在我的应用中,我想上传一张现有照片。

我这样检索它的路径

     private void GetAnyImage()
{
File dir = new File(Environment.getExternalStorageDirectory()
.getAbsolutePath() + "/Pictures/Screenshots");
// --> /storage/sdcard0/Pictures/Screenshots

Log.d("File path ", dir.getPath());
String dirPath=dir.getAbsolutePath();
if(dir.exists() && dir.isDirectory()) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
intent.setType("image/*");
startActivityForResult(intent,REQUEST_ID);
}
}

并最终得到这个典型的 fileUri =content://media/external/images/media/74275

但是在运行这行代码时

  private void saveFileToDrive() {

// progressDialog = ProgressDialog.show(this, "", "Loading...");

Thread t = new Thread(new Runnable() {
@Override
public void run() {
try {
// File's binary content
java.io.File fileContent = new java.io.File(fileUri.getPath());
FileContent mediaContent = new FileContent("image/jpeg", fileContent);

// File's metadata.
File body = new File();
body.setTitle(fileContent.getName());
body.setMimeType("image/jpeg");

File file = service.files().insert(body, mediaContent).execute();

我收到一个错误:

java.io.FileNotFoundException:/external/images/media/74275: open failed: ENOENT (No such file or directory)

我该如何解决这个问题?

如何将 content://media/external/images/media/Y 转换为 file:///storage/sdcard0/Pictures/X.jpg

最佳答案

这样的东西对你有用吗?这样做是查询内容解析器以查找为该内容条目存储的文件路径数据

public static String getRealPathFromUri(Context context, Uri contentUri) {
Cursor cursor = null;
try {
String[] proj = { MediaStore.Images.Media.DATA };
cursor = context.getContentResolver().query(contentUri, proj, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
} finally {
if (cursor != null) {
cursor.close();
}
}
}

这将最终为您提供一个绝对文件路径,您可以从中构造文件 uri

关于java - 如何在android中将 `content://media/external/images/media/Y`转换为 `file:///storage/sdcard0/Pictures/X.jpg`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20028319/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com