真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

android中怎么將圖片路徑與Uri相互轉(zhuǎn)換-創(chuàng)新互聯(lián)

android中怎么將圖片路徑與Uri相互轉(zhuǎn)換?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

創(chuàng)新互聯(lián)公司從2013年創(chuàng)立,是專(zhuān)業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站建設(shè)、成都網(wǎng)站制作網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元圖木舒克做網(wǎng)站,已為上家服務(wù),為圖木舒克各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18980820575

一個(gè)android文件的Uri地址一般如下:

content://media/external/images/media/62026

這是一張圖片的Uri,那么我們?nèi)绾胃鶕?jù)這個(gè)Uri獲得其在文件系統(tǒng)中的路徑呢?

其實(shí)很簡(jiǎn)單,直接上代碼:

public static String getRealFilePath( final Context context, final Uri uri ) {
  if ( null == uri ) return null;
  final String scheme = uri.getScheme();
  String data = null;
  if ( scheme == null )
    data = uri.getPath();
  else if ( ContentResolver.SCHEME_FILE.equals( scheme ) ) {
    data = uri.getPath();
  } else if ( ContentResolver.SCHEME_CONTENT.equals( scheme ) ) {
    Cursor cursor = context.getContentResolver().query( uri, new String[] { ImageColumns.DATA }, null, null, null );
    if ( null != cursor ) {
      if ( cursor.moveToFirst() ) {
        int index = cursor.getColumnIndex( ImageColumns.DATA );
        if ( index > -1 ) {
          data = cursor.getString( index );
        }
      }
      cursor.close();
    }
  }
  return data
  }

本文名稱(chēng):android中怎么將圖片路徑與Uri相互轉(zhuǎn)換-創(chuàng)新互聯(lián)
瀏覽路徑:http://weahome.cn/article/hespe.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部