📄 readfile.jsp
字号:
<HTML>
<%@page contentType="text/html;charset=GB2312"%>
<%@page import="ReadFile"%>
<BODY bgcolor=cyan><Font size=3>
<jsp:useBean id="file" class="ReadFile" scope="session">
</jsp:useBean>
<jsp:setProperty name="file" property="fileName" param="fileName"/>
<P>文件
<jsp:getProperty name="file" property="fileName"/>
的内容如下:<BR>
<% StringBuffer s=file.readFile();
out.print(s);
%>
<FORM action="filepathselect.jsp" method=post name=form>
<INPUT type="submit" value=" 重新选择目录" >
</ FORM >
<BR>
<FORM action="listfilename.jsp" method=post name=form>
<INPUT type="submit" value="重新选择文件" >
</ FORM >
</FONT>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -