动态文件夹创建

发布于 2024-10-20 05:14:23 字数 183 浏览 1 评论 0原文

我想为注册用户创建绝对路径,

例如网站网址是 www.icare.com

当用户使用“Myname”之类的用户名注册自己时,将创建一个动态文件夹,并且

该用户的绝对路径将类似于 www.icare.come /我的名字。 。 。并且将创建一个虚拟索引页面

,任何人都可以帮助我......

i want to make absolute path for register users

for example website url is www.icare.com

when a user register himself with user name like "Myname" a dynamic folder will create and

absolute path for that user will be like www.icare.come/Myname. . . and a dummy index page

will create, any one can help me...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烂柯人 2024-10-27 05:14:23

不要在 Web 根目录上创建文件夹。每当您重新部署 Web 应用程序时,它们都会丢失。

只需将所有数据存储在数据库中,为所有用户创建一个公共 JSP 文件,动态显示数据库中的数据,创建一个映射到 /* 的 servlet 并大致执行以下工作:

String username = request.getPathInfo().substring(1);
User user = userDAO.find(username);

if (user != null) {
   request.setAttribute("user", user);
   request.getRequestDispatcher("/WEB-INF/userindex.jsp").forward(request, response);
} else {
   // Show "unknown user" error page or whatever.
}

Don't create folders on web root. They will all get lost whenever you redeploy the webapp.

Just store all data in a DB, create a common JSP file for all users which displays the data from the DB dynamically, create a servlet which is mapped on /* and does roughly the following job:

String username = request.getPathInfo().substring(1);
User user = userDAO.find(username);

if (user != null) {
   request.setAttribute("user", user);
   request.getRequestDispatcher("/WEB-INF/userindex.jsp").forward(request, response);
} else {
   // Show "unknown user" error page or whatever.
}
夏至、离别 2024-10-27 05:14:23

试试这个

<%@ page import="java.io.*,java.io.File" %>
<%
 File dir = new File("Your Path to create directory");
 if (dir.exists()) 
   {
      if (dir.isDirectory()) {
           // path exists and is a directory
    }
      else {
           // path does exist but is not a directory -- probably just a file
      }
 }
 else {
      // path does not exist so create directory
      if (dir.mkdir()) {
           // directory creation successful
      }
      else {
           // directory creation unsuccessful
      }
 }
%>

Try this

<%@ page import="java.io.*,java.io.File" %>
<%
 File dir = new File("Your Path to create directory");
 if (dir.exists()) 
   {
      if (dir.isDirectory()) {
           // path exists and is a directory
    }
      else {
           // path does exist but is not a directory -- probably just a file
      }
 }
 else {
      // path does not exist so create directory
      if (dir.mkdir()) {
           // directory creation successful
      }
      else {
           // directory creation unsuccessful
      }
 }
%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文