我的代码中有一个文件名:
String NAME_OF_FILE="//sdcard//imageq.png";
FileInputStream fis =this.openFileInput(NAME_OF_FILE); // 2nd line
我在第二行收到错误:
05-11 16:49:06.355:ERROR / AndroidRuntime(4570):引起:java.lang.IllegalArgumentException:文件//sdcard//imageq.png包含路径分隔符
我也试过这种格式:
String NAME_OF_FILE="/sdcard/imageq.png";
答案 0 :(得分:70)
解决方案是:
FileInputStream fis = new FileInputStream (new File(NAME_OF_FILE)); // 2nd line
openFileInput方法不接受路径分隔符。
别忘了
fis.close();
最后。
答案 1 :(得分:60)
此方法在应用程序的私有数据区域中打开一个文件。您无法使用此方法打开此区域中的子目录中的任何文件或完全打开其他区域中的任何文件。因此,直接使用FileInputStream
的构造函数来传递包含目录的路径。
答案 2 :(得分:26)
openFileInput()
不接受路径,只接受文件名
如果您想访问路径,请使用File file = new File(path)
和相应的FileInputStream
答案 3 :(得分:2)
您不能直接使用路径与目录分隔符,但您将 必须为每个目录创建一个文件对象。
注意:此代码生成目录,您的可能不需要...
File file= context.getFilesDir();
file.mkdir();
String[] array=filePath.split("/");
for(int t=0; t< array.length -1 ;t++)
{
file=new File(file,array[t]);
file.mkdir();
}
File f=new File(file,array[array.length-1]);
RandomAccessFileOutputStream rvalue = new RandomAccessFileOutputStream(f,append);
答案 4 :(得分:1)
尝试使用带有子目录openFileInput("/Dir/data.txt")
的{{1}}方法从内部存储访问文件时,出现上述错误消息。
您无法使用上述方法访问子目录。
尝试类似:
Dir
答案 5 :(得分:0)
File file = context.getFilesDir();
file.mkdir();
String[] array = filePath.split("/");
for(int t = 0; t < array.length - 1; t++) {
file = new File(file, array[t]);
file.mkdir();
}
File f = new File(file,array[array.length- 1]);
RandomAccessFileOutputStream rvalue =
new RandomAccessFileOutputStream(f, append);
答案 6 :(得分:0)
我通过在onCreate事件中创建一个目录来解决这种类型的错误,然后通过在需要执行诸如保存或检索该目录中的文件之类的操作的方法中创建新文件对象来访问该目录,希望这有助于!
public class MyClass {
private String state;
public File myFilename;
@Override
protected void onCreate(Bundle savedInstanceState) {//create your directory the user will be able to find
super.onCreate(savedInstanceState);
if (Environment.MEDIA_MOUNTED.equals(state)) {
myFilename = new File(Environment.getExternalStorageDirectory().toString() + "/My Directory");
if (!myFilename.exists()) {
myFilename.mkdirs();
}
}
}
public void myMethod {
File fileTo = new File(myFilename.toString() + "/myPic.png");
// use fileTo object to save your file in your new directory that was created in the onCreate method
}
}
答案 7 :(得分:0)
String all = "";
try {
BufferedReader br = new BufferedReader(new FileReader(filePath));
String strLine;
while ((strLine = br.readLine()) != null){
all = all + strLine;
}
} catch (IOException e) {
Log.e("notes_err", e.getLocalizedMessage());
}