writefile.jsp

来自「这套JSP学习资料」· JSP 代码 · 共 23 行

JSP
23
字号
<HTML>
<%@page contentType="text/html;charset=GB2312"%>
<%@page import="WriterFile"%>

<BODY bgcolor=cyan><Font size=3>

<jsp:useBean id="file" class="WriterFile" scope="page">
</jsp:useBean>
<jsp:setProperty name="file" property="filePath" param="filePath"/>
<jsp:setProperty name="file" property="fileName" param="fileName"/>
<jsp:setProperty name="file" property="fileContent" param="fileContent"/>

<BR>你写文件到目录:
<jsp:getProperty name="file" property="filePath"/>
<BR>文件的名字是:
<jsp:getProperty name="file" property="fileName"/>
<BR>文件的内容是:
<jsp:getProperty name="file" property="fileContent"/>

</FONT>
</BODY>
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?