📄 sample2.jsp
字号:
<%@ page language="java" contentType="text/html; charset=gb2312"%>
<%@ page import="java.io.*"%>
<html>
<head>
<title>创建文件和文件夹</title>
</head>
<body>
<%
String path = request.getRealPath("/");
String tmp_path = path+"tmp";
File fp1 = new File(tmp_path);
fp1.mkdir();
File fp2 = new File(tmp_path,"a.txt");
fp2.createNewFile();
File fp3 = new File(tmp_path,"b.txt");
fp3.createNewFile();
File fp4 = new File(tmp_path,"c.txt");
fp4.createNewFile();
%>
<center>
创建了文件夹:<br>
<%=tmp_path%><br>
并在该文件夹下创建了文件:<br>
a.txt、b.txt、c.txt。<br>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -