B
boyjason
Unregistered / Unconfirmed
GUEST, unregistred user!
我写了一个读取文件的bean,但非要写绝对路径,如果是相对路径就不行,不知道为何,
请知道的哥们言语一声,小弟在此谢过了:)
我的代码如下:
1 try {
2 file = new BufferedReader(new FileReader("dbparam.dat"));
3 try {
4 sParam=file.readLine();
5 }
6 catch (IOException e) {
7 System.out.println("readLine problem, terminating.");
8 }
9 }
10 catch (FileNotFoundException e) {
11 System.out.println("file not found");
12 }
当使用如上方法时,总是显示“file not found”,而当第2行写成绝对路径时,如“c:/dbparam.dat”
则可以成功访问,不知道为何!其实我的那个文件就放在该bean的目录下!
请知道的哥们言语一声,小弟在此谢过了:)
我的代码如下:
1 try {
2 file = new BufferedReader(new FileReader("dbparam.dat"));
3 try {
4 sParam=file.readLine();
5 }
6 catch (IOException e) {
7 System.out.println("readLine problem, terminating.");
8 }
9 }
10 catch (FileNotFoundException e) {
11 System.out.println("file not found");
12 }
当使用如上方法时,总是显示“file not found”,而当第2行写成绝对路径时,如“c:/dbparam.dat”
则可以成功访问,不知道为何!其实我的那个文件就放在该bean的目录下!