- 论坛徽章:
- 0
|
package com;
import java.io.*;
class Stream {
public static void main(String[] args)throws IOException{
FileInputStream fin;
int data;
String str;
InputStreamReader a = new InputStreamReader(System.in);
BufferedReader b = new BufferedReader(a);
System.out.println("please insert file name");
str = b.readLine();
try
{
fin = new FileInputStream(str);
}catch(FileNotFoundException e){
System.out.println("sorry,file not found");
return;
}catch(ArrayIndexOutOfBoundsException e){
System.out.println("usage: file name");
return;
}
do
{
data = fin.read();
System.out.print((char)data);
}while(data != -1);
}
}
程序是这样子的,但是我不知道run或者debug 时程序去哪个文件夹找str文件,是不是elipse或者j-buider 的哪个默认路径,如果是,怎么看这个路径,如果不是,那我怎么让程序访问任意一个路径下的文件呢?
希望师兄们不吝赐教,感激!!! |
|