溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

安卓打開文件瀏覽器,選擇文件后得到返回路徑

發(fā)布時(shí)間:2020-08-04 12:27:26 來源:網(wǎng)絡(luò) 閱讀:4675 作者:smilegc 欄目:開發(fā)技術(shù)

新手,寫的不對(duì)還望指正!

在安卓應(yīng)用開發(fā)中經(jīng)常會(huì)遇到需要打開系統(tǒng)文件管理器選擇文件后返回路徑的操作。例如點(diǎn)擊一個(gè)導(dǎo)入的Button按鈕,首先在根目錄下尋找所需要的文件,若文件不存在就彈出對(duì)話框是否選擇文件,選擇文件后返回文件路徑,給Button注冊(cè)監(jiān)聽:

public void onClick(View arg0) {

if (mFilePath.equals("沒有找到相關(guān)文件")) {

AlertDialog.Builder builder = new AlertDialog.Builder(FeildListActivity.this);

builder.setCancelable(false);

builder.setTitle("提示")

        .setMessage("該目錄下文件不存在是否從別的目錄下尋找?")

.setPositiveButton("是",new DialogInterface.OnClickListener() {

@Override

public void onClick(

              DialogInterface dialog,int which) {

// 打開系統(tǒng)文件瀏覽功能

Intent intent = new Intent();

intent.setAction(Intent.ACTION_GET_CONTENT);

intent.setType("*/*");

intent.addCategory(Intent.CATEGORY_OPENABLE);

startActivityForResult(intent,INFILE_CODE);

}

})

.setNegativeButton("否",null})

.show();

}

重寫onActivityResult函數(shù),在函數(shù)內(nèi)部獲得返回路徑,代碼如下:

protected void onActivityResult(int requestCode, int resultCode, Intent data) {

if (resultCode != Activity.RESULT_OK) {

finish();

} else if (requestCode == INFILE_CODE) {

mFilePath = Uri.decode(data.getDataString());

//通過data.getDataString()得到的路徑如果包含中文路徑,則會(huì)出現(xiàn)亂碼現(xiàn)象,經(jīng)過Uri.decode()函數(shù)進(jìn)行解碼,得到正確的路徑。但是此時(shí)路徑為Uri路徑,必須轉(zhuǎn)換為String路徑,網(wǎng)上有很多方法,本人通過對(duì)比發(fā)現(xiàn),Uri路徑里多了file://字符串,所以采用以下方法將前邊帶的字符串截取掉,獲得String路徑,可能通用性不夠好,下一步會(huì)學(xué)習(xí)更好的方法。

           mFilePath = mFilePath.substring(7, mFilePath.length());

}

}


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI