哪位大侠知道文件在工作空间里面,为什么没有后缀名?
public class Demo4 {
public static void main(String[] args) throws Exception {
String filename = "6.4";//这个文件是在工作空间里面,没有后缀名!
InputStream ips = new FileInputStream(filename);
byte []buff = new byte[1024];
int len;//定义缓冲区
while((len = ips.read(buff)) != -1){
System.out.println(new String(buff,0,buff.length));//输出
到控制台!此时的输出流就是打印流!");
}
ips.close();
}
}
|
|