07_07.jsp

来自「jsp数据库编程入门」· JSP 代码 · 共 20 行

JSP
20
字号
<html>
<head>
<title>向文件追加内容</title>
</head>
<%@ page contentType="text/html; charset=gb2312"%>
<jsp:useBean id="append" class="test.AppendFile" scope="session"/>
<body>
<center><h2>
向文件追加内容
</h2></center>
<%
   String path="D:\\myfile.txt";
   String content="\n"+"This is something which is appended in this file.";
   append.setPath(path);
   append.setSomething(content);
   out.println(append.appendSomething());
%>
<a href="07_05.jsp">返回</a><br>
</body>
</html>

⌨️ 快捷键说明

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