安卓/ NativeScript / JS。如何从android媒体路径获取包含文件名的绝对路径?

时间:2017-02-28 07:36:22

标签: javascript android android-intent nativescript android-contentresolver

我在nativescript中获得了图像的媒体路径

我的代码:

var logoPath = argIntent.getParcelableExtra(Intent_1.EXTRA_STREAM);

但我得到了这条道路:

内容://媒体/外部/图像/媒体/ 152

如何从此路径获取包含文件名的绝对路径?

在Nativescript / Javascript实现中请!如果有某种代码..

-

我需要这样的东西,但是在javascript代码中:

public static String getRealPathFromURI_API19(Context context, Uri uri){
    String filePath = "";
    String wholeID = DocumentsContract.getDocumentId(uri);

     // Split at colon, use second item in the array
     String id = wholeID.split(":")[1];

     String[] column = { MediaStore.Images.Media.DATA };     

     // where id is equal to             
     String sel = MediaStore.Images.Media._ID + "=?";

     Cursor cursor = context.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, 
                               column, sel, new String[]{ id }, null);

     int columnIndex = cursor.getColumnIndex(column[0]);

     if (cursor.moveToFirst()) {
         filePath = cursor.getString(columnIndex);
     }   
     cursor.close();
     return filePath;
}

我怎么能改写它??

1 个答案:

答案 0 :(得分:0)

String path = yourAndroidURI.uri.getPath()//“file:///mnt/sdcard/FileName.mp3”

文件文件=新文件(新URI(路径));

String path = yourAndroidURI.uri.toString()//“/ mnt /sdcard / FileName.mp3”

文件文件=新文件(新URI(路径));

也请参阅此link