文件操作的小程序
http://www.25gy.com/myworks/StreamControl[Java].rar
这个是我做的文件操作的小程序,有需要者下。
用流操作
import java.io.*;
class FileStreamTest
{
public static void main(String[] args)
{
String filename ;
int ch = 0 ;
filename = "gongtao.txt" ;
try
{
FileInputStream fis = new FileInputStream(filename);
while ((ch=fis.read())!=-1)
{
System.out.print((char)ch);
}
fis.close();
}
catch (IOException e)
{
System.out.println(e.toString());
}
}
}