Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Servlet/JSP/JSF/JavaFX Script  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
reply to postflat modethreaded modego to previous topicgo to next topicgo to back
作者 Re:为什么有时候能显示在网页上有时候是打开一个文件 [Re:mrs_cadbary]
mrs_cadbary





发贴: 12
于 2005-12-19 00:24 user profilesend a private message to userreply to postsearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
我的程序如下:

<%@ page import="java.io.*" %>
<%@ page import="java.lang.*" %>
<%@ page contentType="text/html/log;charset=gb2312"%>
<html>
<head>
<title>Lion互动网络==》JSP中读文件和写文件的例子</title>
</head>
<body>

<%
//变量声明
java.lang.String strFileName; //文件名
java.io.File objFile; //文件对象
java.io.FileReader objFileReader; //读文件对象
char[] chrBuffer = new char[10]; //缓冲
int intLength; //实际读出的字符数(一个中文为一个字符)

//设置待读文件名
strFileName = "d:\\jfiles\\printname.log";

//创建文件对象
objFile = new java.io.File(strFileName);

//判断文件是否存在
if(objFile.exists()){//文件存在
//创建读文件对象
objFileReader = new java.io.FileReader(objFile);
BufferedReader bufferedReader = new BufferedReader(objFileReader);
String currentLine;
currentLine = bufferedReader.readLine();

while( (currentLine = bufferedReader.readLine()) != null )
{
out.println(currentLine);
}

//关闭读文件对象
objFileReader.close();
}
else{//文件不存在
out.println("下列文件不存在:"+strFileName);
}
%>

</body>
</html>




一个程序员的奋斗历程

话题树型展开
人气 标题 作者 字数 发贴时间
2137 为什么有时候能显示在网页上有时候是打开一个文件 mrs_cadbary 52 2005-12-19 00:23
1785 Re:为什么有时候能显示在网页上有时候是打开一个文件 mrs_cadbary 1000 2005-12-19 00:24
1864 Re:为什么有时候能显示在网页上有时候是打开一个文件 mrs_cadbary 683 2005-12-19 00:26

reply to postflat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923