file_write.jsp

来自「jakarta-taglibs」· JSP 代码 · 共 30 行

JSP
30
字号
<html>
<%@taglib uri="http://jakarta.apache.org/taglibs/io-1.0" prefix="io" %>
<%--
  
  Serves up a file via file system

--%>
<body>
<h1>Fetch a file from FTP and write to the local file system</h1>
<p>
Attempting to FTP from GNU to the local file system
</p>
<p>
<io:request url="file:/C:/foo.txt" output="false">
  <io:body>
    This is some text - did it work?
  </io:body>
</io:request>
</p>
<p>
Contens of the file is:-
</p>
<pre>
<io:request url="file:/C:/foo.txt"/>
</pre>
</body>
</html>


⌨️ 快捷键说明

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