我使用的下面的代码: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() 也移除了。请问哪里出错呢
添加回答
举报
0/150
提交
取消