【问题标题】:Getting file name in integer format以整数格式获取文件名
【发布时间】:2016-10-13 06:32:17
【问题描述】:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {

    if (resultCode == RESULT_OK) {

        String FilePath = data.getData().getPath();
        Log.e("filepath",String.valueOf(FilePath));
        String FileName = data.getData().getLastPathSegment();

        Toast toast = Toast.makeText(this, FilePath, Toast.LENGTH_LONG);
        toast.setGravity(Gravity.CENTER | Gravity.CENTER_HORIZONTAL, 0,
                        0);
    }
}

我需要将文件名设为/video.mp4,但我得到的是/35370

我是这样的 E/filepath: /external/video/media/35424 但我想要这样的 E/filepath: /external/video/media/video.mp4

请给我一些适当的建议,我通过查看其他帖子完成了所有更改

Logcat:

10-13 12:25:34.818 15662-15662/com.onnurinet.andriodstb D/dalvikvm: VFY: replacing opcode 0x6f at 0x0000
10-13 12:25:40.366 15662-15662/com.onnurinet.andriodstb E/filepath: /external/video/media/35370
10-13 12:25:40.379 15662-15662/com.onnurinet.andriodstb D/string: 35370
10-13 12:25:40.721 15662-15662/com.onnurinet.andriodstb D/dalvikvm: Trying to load lib /data/app-lib/com.onnurinet.andriodstb-2/libvlcjni.so 0x4190f130
10-13 12:25:40.722 15662-15662/com.onnurinet.andriodstb W/linker: libvlcjni.so has text relocations. This is wasting memory and is a security risk. Please fix.
10-13 12:25:40.740 15662-15662/com.onnurinet.andriodstb D/dalvikvm: Added shared lib /data/app-lib/com.onnurinet.andriodstb-2/libvlcjni.so 0x4190f130
10-13 12:25:40.740 15662-15662/com.onnurinet.andriodstb D/VLC/JNI/main: JNI interface loaded.

【问题讨论】:

  • 你正在尝试的操作系统版本是什么?
  • kitkat 版本,但在棒棒糖 5.1.1 中工作
  • 你把这个文件保存在哪里?
  • 我会将它作为文件名保存在另一个活动中

标签: android


【解决方案1】:
 final Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Video.Media.EXTERNAL_CONTENT_URI);
        intent.setType("video/*");
        startActivityForResult(intent, 152);



    public void onActivityResult(int requestCode, int resultCode, Intent data) {
            super.onActivityResult(requestCode, resultCode, data);
            if (resultCode == getActivity().RESULT_OK) {
                if (requestCode == 152) {
                       final Uri uriVideoFromGalleryPath = data.getData();
                        final String selectedMediaPath =getPath(this, uriVideoFromGalleryPath);
Toast toast = Toast.makeText(this, selectedMediaPath , Toast.LENGTH_LONG);

    }}

//在onCreate()之外添加这个方法。

public static String getPath(final Context context, final Uri uri) {

    final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;

    // DocumentProvider
    if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) {
        // ExternalStorageProvider
        if (isExternalStorageDocument(uri)) {
            final String docId = DocumentsContract.getDocumentId(uri);
            final String[] split = docId.split(":");
            final String type = split[0];

            if ("primary".equalsIgnoreCase(type)) {
                return Environment.getExternalStorageDirectory() + "/" + split[1];
            }

            // TODO handle non-primary volumes
        }
        // DownloadsProvider
        else if (isDownloadsDocument(uri)) {

            final String id = DocumentsContract.getDocumentId(uri);
            final Uri contentUri = ContentUris.withAppendedId(
                    Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));

            return getDataColumn(context, contentUri, null, null);
        }
        // MediaProvider
        else if (isMediaDocument(uri)) {
            final String docId = DocumentsContract.getDocumentId(uri);
            final String[] split = docId.split(":");
            final String type = split[0];

            Uri contentUri = null;
            if ("image".equals(type)) {
                contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
            } else if ("video".equals(type)) {
                contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
            } else if ("audio".equals(type)) {
                contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
            }

            final String selection = "_id=?";
            final String[] selectionArgs = new String[] {
                    split[1]
            };

            return getDataColumn(context, contentUri, selection, selectionArgs);
        }
    }
    // MediaStore (and general)
    else if ("content".equalsIgnoreCase(uri.getScheme())) {
        return getDataColumn(context, uri, null, null);
    }
    // File
    else if ("file".equalsIgnoreCase(uri.getScheme())) {
        return uri.getPath();
    }

    return null;
}

/**
 * Get the value of the data column for this Uri. This is useful for
 * MediaStore Uris, and other file-based ContentProviders.
 *
 * @param context The context.
 * @param uri The Uri to query.
 * @param selection (Optional) Filter used in the query.
 * @param selectionArgs (Optional) Selection arguments used in the query.
 * @return The value of the _data column, which is typically a file path.
 */
public static String getDataColumn(Context context, Uri uri, String selection,
        String[] selectionArgs) {

    Cursor cursor = null;
    final String column = "_data";
    final String[] projection = {
            column
    };

    try {
        cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs,
                null);
        if (cursor != null && cursor.moveToFirst()) {
            final int column_index = cursor.getColumnIndexOrThrow(column);
            return cursor.getString(column_index);
        }
    } finally {
        if (cursor != null)
            cursor.close();
    }
    return null;
}


/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is ExternalStorageProvider.
 */
public static boolean isExternalStorageDocument(Uri uri) {
    return "com.android.externalstorage.documents".equals(uri.getAuthority());
}

/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is DownloadsProvider.
 */
public static boolean isDownloadsDocument(Uri uri) {
    return "com.android.providers.downloads.documents".equals(uri.getAuthority());
}

/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is MediaProvider.
 */
public static boolean isMediaDocument(Uri uri) {
    return "com.android.providers.media.documents".equals(uri.getAuthority());
}

【讨论】:

  • 在无法解析符号上下文和数据时出现错误
  • context 表示您的 getApplicationContext() 如果使用活动,如果片段则使用 getActivity();
  • 数据来自 "" onActivityResult(int requestCode, int resultCode, Intent data) ""
  • Intent intent = new Intent(Intent.ACTION_PICK, null); // intent.putExtra(MediaStore.EXTRA_OUTPUT, getVideoPathFromURI(getApplicationContext(),data)); intent.setType("video/*"); startActivityForResult(intent,PICKFILE_RESULT_CODE);
  • 你必须使用 getVideoPathFromURI(getApplicationContext(),data));在 onActivityresult 中
【解决方案2】:

试试这个:

private String getRealPathFromURI(Uri contentURI) {
    String result;
    Cursor cursor = getContentResolver().query(contentURI, null, null, null, null);
    if (cursor == null) { // Source is Dropbox or other similar local file path
        result = contentURI.getPath();
    } else {
        cursor.moveToFirst();
        int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA);
        result = cursor.getString(idx);
        cursor.close();
    }
    return result;
}

【讨论】:

    【解决方案3】:

    试试这个:

    从 Intent 返回的路径在 KitKat 和 lollipop 中是不同的。你能在 KitKat 中试试这个吗?

    public String getVideoPathFromURI(Context context, Uri uri){
    
        String filePath = "";
    
        String wholeID = DocumentsContract.getDocumentId(uri);
    
        String id = wholeID.split(":")[1];
    
        String[] column = { MediaStore.Images.Media.DATA };
    
       String sel = MediaStore.Images.Media._ID + "=?";
    
        Cursor cursor = context.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
                column, sel, new String[]{ id }, null);
    
        if(cursor != null) {
            int columnIndex = cursor.getColumnIndex(column[0]);
    
            if (cursor.moveToFirst()) {
                filePath = cursor.getString(columnIndex);
            }
            cursor.close();
        }
        return filePath;
    }
    

    【讨论】:

    • 为什么?请你解释一下,而不是把代码扔在他的脸上,好吗?
    • 在 onActivityResult 中调用方法但应用程序崩溃
    • 可能对你没有多大帮助,但你能告诉我原始文件名是什么,是 video.mp4 吗?
    • 是的,但不仅是我们选择的视频名称必须得到的任何东西
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2011-06-06
    • 1970-01-01
    • 1970-01-01
    • 2020-06-19
    • 2021-04-25
    • 2021-06-02
    • 1970-01-01
    相关资源
    最近更新 更多