• 初学jsp写的一个显示系统目录文件的小程序


    <%
    /**
    文件名: folder.jsp(SUN企业级应用的首选)
    描述: 一个简单的系统文件目录显示程序,类似于资源管理器,不过功能弱多了。通过这个例子主要是学习一下SYstem.IO.File类 。
    作者: 慈勤强
    Emai : cqq1978@yeah.net
    **/
    %>
    <%@ page contentType="text/html;charset=gb2312"%>
    <%@page import="java.io.*" %>
    <style>
    td,select,input,body
     {
      font-size:9pt;
     }
    </style>
    <title>jsp(SUN企业级应用的首选) File System Viewer</title>
    <%!
    String getDrivers()
    /**
    Windows系统上取得可用的所有逻辑盘
    **/
    {
     StringBuffer sb=new StringBuffer("Drivers : ");
     File roots[]=File.listRoots();
     for(int i=0;i<roots.length;i++)
     {
      sb.append("<a href='?path="+roots[i]+"'>");
      sb.append(roots[i]+"</a> &nbsp;&nbsp;");
     }
     return sb.toString();
    }
    %>
    <%
    String strThisFile="folder.jsp(SUN企业级应用的首选)";
    request.setCharacterEncoding("gb2312");
    String strDir = request.getParameter("path");

    if(strDir==null||strDir.length()<1)
    {
     strDir = "c:\\";
    }
    StringBuffer sb=new StringBuffer("");
    StringBuffer sbFile=new StringBuffer("");
    try
    {
     out.println("<table border=1 width='100%' bgcolor='#F1f1f1'><tr><td width='30%'>Current Directory: <b>"+strDir+"</b></td><td>" + getDrivers() + "</td></tr></table><br>");
     File objFile = new File(strDir);
     File list[] = objFile.listFiles();
     if(objFile.getAbsolutePath().length()>3)
     {
      sb.append("<a href='?path="+objFile.getParentFile().getAbsolutePath()+"'>");
      sb.append("Parent Folder</a><p>");
     }
     for(int i=0;i<list.length;i++)
     {
      if(list[i].isDirectory())
      {
       sb.append("D&nbsp;&nbsp;<a href='?path="+list[i].getAbsolutePath()+"'>"+list[i].getName()+"</a><br>");
      }
      else
      {
       sbFile.append("F&nbsp;&nbsp;"+list[i].getName()+"<br>");
      } 
     }
     out.println(sb.toString()+sbFile.toString());
    }
    catch(Exception e)
    {
     out.println("<font color=red>"+e.toString()+"</font>");
    }
    %>

    -

    本文来源于 WEB开发网 原文链接:http://www.cncms.com.cn/jsp/8269.htm

  • 相关阅读:
    双向(端)链表、栈、队列
    WPF 3D基础(1)
    静态查找
    栈和队列 迷宫求解
    异步编程Demo
    WPF 3D基础(2)
    串操作
    链栈和链队
    Linux恢复数据
    word文件修复窍门
  • 原文地址:https://www.cnblogs.com/cy163/p/1438393.html
Copyright © 2020-2023  润新知