黑马程序员技术交流社区
标题:
文件在工作空间里面,为什么没有后缀名?
[打印本页]
作者:
虎牛龙马
时间:
2014-4-9 12:13
标题:
文件在工作空间里面,为什么没有后缀名?
哪位大侠知道文件在工作空间里面,为什么没有后缀名?
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();
}
}
作者:
╰つ
时间:
2014-4-9 12:25
你设置后缀名,它就有后缀名呗,比如说 6.txt
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2