怎么在eclipse环境中,使用JSP页面代码在WebContent下面创建目录

本文介绍了如何在Eclipse Oxygen.1a版本的Java EE IDE环境下,利用JSP页面代码在WebContent目录下创建及管理文件夹。内容包括Eclipse的版权信息、版本号以及涉及的开源项目。
摘要由CSDN通过智能技术生成

Eclipse版本

Eclipse Java EE IDE for Web Developers.


Version: Oxygen.1a Release (4.7.1a)
Build id: 20171005-1200


(c) Copyright Eclipse contributors and others 2000, 2017.  All rights reserved. Eclipse and the Eclipse logo are trademarks of the Eclipse Foundation, Inc., https://www.eclipse.org/. The Eclipse logo cannot be altered without Eclipse's permission. Eclipse logos are provided for use under the Eclipse logo and trademark guidelines, https://www.eclipse.org/logotm/. Oracle and Java are trademarks or registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.


This product includes software developed by other open source projects including the Apache Software Foundation, 


Apache Tomcat/8.5.23


<%@ page language="java" contentType="text/html; charset=UTF-8"

pageEncoding="UTF-8"%>
<%@ page import="java.io.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>创建文件夹</title>
</head>
<body>
<%
String dirStr = getServletContext().getRealPath("//");
File dir = new File(dirStr, "students");
%>
<p>
在Root下创建一个新的目录:students,<br>成功创建了吗?
</p>
<%=dir.mkdir()%>
<p>Students是目录吗?</p>
<%=dir.isDirectory()%>

<br>获取文件目录

<br>

<%=dir.getAbsolutePath()%>
</body>

</html>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值