獲取路徑

Android 一鍵分享時(shí)分享的圖片

// imagePath是圖片的本地路徑嗡呼,Linked-In以外的平臺(tái)都支持此參數(shù)
//oks.setImagePath("/sdcard/test.jpg");//確保SDcard下面存在此張圖片
if (utils.isStrEmpty(newsDetailInfo.data.share_logo)) {//logo
// oks.setImageUrl("http://www.univsport.com/uploadfile/upload/arc/20170320/58cf450b57302.jpg");
Uri uri=Uri.parse("android:resource://com.bwvip.sporteducation/"+R.raw.sport_education);
oks.setImagePath(getRealFilePath(NewsDetailActivity.this,uri));
} else {
oks.setImageUrl(newsDetailInfo.data.share_logo);//logo
}

/**

  • 根據(jù)Uri獲取圖片絕對(duì)路徑印颤,解決Android4.4以上版本Uri轉(zhuǎn)換
  • @param activity
  • @param imageUri
  • @author yaoxing
  • @date 2014-10-12
    */
    @TargetApi(19)
    public static String getImageAbsolutePath(Activity context, Uri imageUri) {
    if (context == null || imageUri == null)
    return null;
    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT && DocumentsContract.isDocumentUri(context, imageUri)) {
    if (isExternalStorageDocument(imageUri)) {
    String docId = DocumentsContract.getDocumentId(imageUri);
    String[] split = docId.split(":");
    String type = split[0];
    if ("primary".equalsIgnoreCase(type)) {
    return Environment.getExternalStorageDirectory() + "/" + split[1];
    }
    } else if (isDownloadsDocument(imageUri)) {
    String id = DocumentsContract.getDocumentId(imageUri);
    Uri contentUri = ContentUris.withAppendedId(Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));
    return getDataColumn(context, contentUri, null, null);
    } else if (isMediaDocument(imageUri)) {
    String docId = DocumentsContract.getDocumentId(imageUri);
    String[] split = docId.split(":");
    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;
    }
    String selection = MediaStore.Images.Media._ID + "=?";
    String[] selectionArgs = new String[] { split[1] };
    return getDataColumn(context, contentUri, selection, selectionArgs);
    }
    } // MediaStore (and general)
    else if ("content".equalsIgnoreCase(imageUri.getScheme())) {
    // Return the remote address
    if (isGooglePhotosUri(imageUri))
    return imageUri.getLastPathSegment();
    return getDataColumn(context, imageUri, null, null);
    }
    // File
    else if ("file".equalsIgnoreCase(imageUri.getScheme())) {
    return imageUri.getPath();
    }
    return null;
    }

public static String getDataColumn(Context context, Uri uri, String selection, String[] selectionArgs) {
Cursor cursor = null;
String column = MediaStore.Images.Media.DATA;
String[] projection = { column };
try {
cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs, null);
if (cursor != null && cursor.moveToFirst()) {
int index = cursor.getColumnIndexOrThrow(column);
return cursor.getString(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());
    }

/**

  • @param uri The Uri to check.
  • @return Whether the Uri authority is Google Photos.
    */
    public static boolean isGooglePhotosUri(Uri uri) {
    return "com.google.android.apps.photos.content".equals(uri.getAuthority());
    }

根據(jù)圖片的Uri痰娱,那么我們 獲得其在文件系統(tǒng)中的路徑
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;
}

java中獲取工程中res目錄路徑的方法

第一種:
File f = new File(this.getClass().getResource("/").getPath());
System.out.println(f);
結(jié)果:
C:\Documents%20and%20Settings\Administrator\workspace\projectName\bin
獲取當(dāng)前類的所在工程路徑;
如果不加“/”
File f = new File(this.getClass().getResource("").getPath());
System.out.println(f);
結(jié)果:
C:\Documents%20and%20Settings\Administrator\workspace\projectName\bin\com\test
獲取當(dāng)前類的絕對(duì)路徑;
第二種:
File directory = new File("");//參數(shù)為空
String courseFile = directory.getCanonicalPath() ;
System.out.println(courseFile);
結(jié)果:
C:\Documents and Settings\Administrator\workspace\projectName
獲取當(dāng)前類的所在工程路徑;
第三種:
URL xmlpath = this.getClass().getClassLoader().getResource("selected.txt");
System.out.println(xmlpath);
結(jié)果:
file:/C:/Documents%20and%20Settings/Administrator/workspace/projectName/bin/selected.txt
獲取當(dāng)前工程src目錄下selected.txt文件的路徑
第四種:
System.out.println(System.getProperty("user.dir"));
結(jié)果:
C:\Documents and Settings\Administrator\workspace\projectName
獲取當(dāng)前工程路徑
第五種:
System.out.println( System.getProperty("java.class.path"));
結(jié)果:
C:\Documents and Settings\Administrator\workspace\projectName\bin
獲取當(dāng)前工程路徑

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末辜昵,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子筐赔,更是在濱河造成了極大的恐慌株婴,老刑警劉巖,帶你破解...
    沈念sama閱讀 221,198評(píng)論 6 514
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件股毫,死亡現(xiàn)場(chǎng)離奇詭異膳音,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)铃诬,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,334評(píng)論 3 398
  • 文/潘曉璐 我一進(jìn)店門(mén)祭陷,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人氧急,你說(shuō)我怎么就攤上這事颗胡『辽睿” “怎么了吩坝?”我有些...
    開(kāi)封第一講書(shū)人閱讀 167,643評(píng)論 0 360
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)哑蔫。 經(jīng)常有香客問(wèn)我钉寝,道長(zhǎng),這世上最難降的妖魔是什么闸迷? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 59,495評(píng)論 1 296
  • 正文 為了忘掉前任嵌纲,我火速辦了婚禮,結(jié)果婚禮上腥沽,老公的妹妹穿的比我還像新娘逮走。我一直安慰自己,他們只是感情好今阳,可當(dāng)我...
    茶點(diǎn)故事閱讀 68,502評(píng)論 6 397
  • 文/花漫 我一把揭開(kāi)白布师溅。 她就那樣靜靜地躺著,像睡著了一般盾舌。 火紅的嫁衣襯著肌膚如雪墓臭。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 52,156評(píng)論 1 308
  • 那天妖谴,我揣著相機(jī)與錄音窿锉,去河邊找鬼。 笑死膝舅,一個(gè)胖子當(dāng)著我的面吹牛嗡载,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播仍稀,決...
    沈念sama閱讀 40,743評(píng)論 3 421
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼洼滚,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了琳轿?” 一聲冷哼從身側(cè)響起判沟,我...
    開(kāi)封第一講書(shū)人閱讀 39,659評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤耿芹,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后挪哄,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體吧秕,經(jīng)...
    沈念sama閱讀 46,200評(píng)論 1 319
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 38,282評(píng)論 3 340
  • 正文 我和宋清朗相戀三年迹炼,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了砸彬。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 40,424評(píng)論 1 352
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡斯入,死狀恐怖砂碉,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情刻两,我是刑警寧澤增蹭,帶...
    沈念sama閱讀 36,107評(píng)論 5 349
  • 正文 年R本政府宣布,位于F島的核電站磅摹,受9級(jí)特大地震影響滋迈,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜户誓,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,789評(píng)論 3 333
  • 文/蒙蒙 一饼灿、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧帝美,春花似錦碍彭、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 32,264評(píng)論 0 23
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至女责,卻和暖如春漆枚,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背抵知。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,390評(píng)論 1 271
  • 我被黑心中介騙來(lái)泰國(guó)打工墙基, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人刷喜。 一個(gè)月前我還...
    沈念sama閱讀 48,798評(píng)論 3 376
  • 正文 我出身青樓残制,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親掖疮。 傳聞我的和親對(duì)象是個(gè)殘疾皇子初茶,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,435評(píng)論 2 359

推薦閱讀更多精彩內(nèi)容