| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 395 人关注过本帖
标题:打开文件
只看楼主 加入收藏
lilyfei
Rank: 1
等 级:新手上路
帖 子:36
专家分:0
注 册:2007-3-9
收藏
 问题点数:0 回复次数:3 
打开文件

用代码怎样实现在屏幕上显示打开文件的内容呀?不一定是文本文件!

搜索更多相关主题的帖子: 文件 
2007-05-02 23:18
千里冰封
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:灌水之王
等 级:版主
威 望:155
帖 子:28477
专家分:59
注 册:2006-2-26
收藏
得分:0 
可以用DOS命令type
也可以自己用IO来实现

可惜不是你,陪我到最后
2007-05-03 09:11
yuyunliuhen
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:1435
专家分:0
注 册:2005-12-12
收藏
得分:0 

char[] buf=new char[1024];
File f =new File("file.txt");
FileRaeder in =new FileReader (f);
int len=in.read(buf);
System.out.println(new String(buf,0,len));
或者
byte[] buf=new byte[1024];
File f =new File("file.txt");
FileInputStream in =new FileInputStream (f);
int len=in.read(buf);
System.out.println(new String(buf,0,len));

也行吧


Go confidently in the  directions of your dreams,live the life you have imagined!Just do it!
It is no use learning without thinking!
2007-05-03 10:13
lilyfei
Rank: 1
等 级:新手上路
帖 子:36
专家分:0
注 册:2007-3-9
收藏
得分:0 
我试试,谢谢
2007-05-05 12:01
快速回复:打开文件
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023050 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved