| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 442 人关注过本帖
标题:[求助]有很多人都想用的一个流
只看楼主 加入收藏
networkangle
Rank: 1
等 级:新手上路
帖 子:93
专家分:0
注 册:2005-4-22
收藏
 问题点数:0 回复次数:2 
[求助]有很多人都想用的一个流

谁能写一个对象流的小例子
让我知道他是怎么读写的啊

2005-12-23 11:52
新坏男人
Rank: 1
等 级:新手上路
威 望:1
帖 子:38
专家分:0
注 册:2005-12-7
收藏
得分:0 

import java.io.*;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class Test03_1
{
static public void ReadData(String FileName) throws IOException
{
String Str="";

FileReader fr=null;
BufferedReader br=null;
try
{
fr = new FileReader(FileName);
br = new BufferedReader(fr);
String record = new String();
while ((record = br.readLine()) != null)
{
Str+=record+"\n";
}
}
catch (IOException e)
{
System.out.println("文件读失败!");
e.printStackTrace();
}

br.close();
fr.close();
System.out.println(Str);
return ;
}
public static void main(String[] args)
{
try
{
ReadData("d:\\1.txt");
//...
}
catch (IOException e)
{
//...
}
//catch(/....)

}
}


/UploadFile/2005-11/2005112317153975.gif" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www./UploadFile/2005-11/2005112317153975.gif');}" onmousewheel="return imgzoom(this);" alt="" />
2005-12-23 13:08
cll19820814
Rank: 2
等 级:新手上路
威 望:3
帖 子:328
专家分:0
注 册:2005-11-30
收藏
得分:0 
好 顶 谢谢了

懵懵懂懂,看千遍而不会;设身处地,试一下就成功!
2005-12-23 13:30
快速回复:[求助]有很多人都想用的一个流
数据加载中...
 
   



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

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