程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-當復制 android 文件時未發現異常

java-當復制 android 文件時未發現異常

編輯:編程綜合問答
當復制 android 文件時未發現異常

我使用的下面的代碼:

public synchronized void onActivityResult(final int requestCode, int resultCode,
        final Intent data) {
     String filePath = null;
     if (resultCode == Activity.RESULT_OK) {
         switch (requestCode) {
         case RESULT_MEMORY_SAVE:               
             filePath = data.getDataString();
             copyFileForReceipts(filePath,pathOfReceipts);

filePath 是一個字符串,Debugger 顯示它的值"content://media/external/images/media/133"

然後我使用的是:

sourceLocation  = filePath;
File afile = new File(sourceLocation); 
File bfile = new File(targetLocation + "file.jpg");
inStream = new FileInputStream(afile.getName()); //Gives exception
outStream = new FileOutputStream(bfile.getName());

給出FileNotFound異常,我把 .getName() 也移除了。請問哪裡出錯呢?

最佳回答:


content://media/external/images/media/133 這個不是文件路勁, 在android裡面可以通過ContentResolver 獲取得到具體的內容

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved