没有通过 FileInputStream 获取文件?

Not getting file through FileInputStream?

我正在尝试检查文件位置以免被覆盖。为此,我必须使用 FileInputStream,因为它有一个可以与 FileChannel 一起使用的方法 position()BufferedReader不保位

我的代码是:

FileChannel fc = null;
FileInputStream fis = null;      
int i=0;
long pos;
char c;
fis = new FileInputStream("File.txt");
   while((i=fis.read())!=-1)
                         {
                            fc = fis.getChannel();
                            pos = fc.position();
                            c = (char)i;
                            System.out.print("No of bytes read: "+pos);
                            System.out.println("; Char read: "+c);
                         }

我得到 java.io.FileNotFoundException:

/doneQuestionDetail.txt: open failed: ENOENT (No such file or directory)

这个错误意味着它没有从某个位置获取文件,因为那里不存在文件,如果我使用 BufferedReader:

BufferedReader inputReader = new BufferedReader(
                                    new InputStreamReader(openFileInput("File.txt")));

这行没有给出任何错误,这意味着文件存在并且 FileInputStream 没有获取文件。

搜索后我先获取位置然后将其提供给FileInputStream,然后我将代码更改为:

String extr = Environment.getExternalStorageDirectory().toString();
                            File mFolder = new File(extr + "/imotax");
                            String s = "doneQuestionDetail.txt";
                            File f = new File(mFolder.getAbsolutePath(), s);
                             fis = new FileInputStream(f);

现在我收到一个错误:

java.io.FileNotFoundException: /mnt/sdcard/imotax/File.txt: open failed: ENOENT (No such file or directory)

希望得到您的建议。谢谢

试试下面的代码。

File sdCard = Environment.getExternalStorageDirectory();
File dir = new File(sdCard.getAbsolutePath() + File.separator
                        + "/imotax");
dir.mkdirs();
File f= new File(dir, fileToCreate);
if(!f.exists()){
f.createNewFile();
}

fis = new FileInputStream(f);