欢迎光临
我们一直在努力

java读文件-JSP教程,Java技巧及代码

建站超值云服务器,限时71元/月

/* readfile.java

读取文件的内容,并将原样输出至屏幕上

使用方法:java readfile 文件名

*/

import java.io.*;

public class readfile

{

public static void main(string[] args)

{

byte[] buff = new byte[1024];

boolean cont = true;

fileinputstream infile = null;

// 生成对象infile 准备读取文件

try

{

infile = new fileinputstream(args[0]);

}

catch (filenotfoundexception e)

{

system.err.println("没有找到文件");

system.exit(1);

}

while (cont)

{

try

{

int n = infile.read(buff); // 从文件读取数据

system.out.write(buff, 0, n); // 写入system.out中

}

catch (exception e)

{

cont = false;

}

}

try

{

infile.close();

}

catch (ioexception e)

{

system.err.println("文件错误");

system.exit(1);

}

}

}

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » java读文件-JSP教程,Java技巧及代码
分享到: 更多 (0)