⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 07_07.jsp

📁 jsp数据库编程入门
💻 JSP
字号:
<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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -