文件表HTML : 目录 « 文件输入输出 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 文件输入输出 » 目录屏幕截图 
文件表HTML
文件表HTML
  

/*
 * This example is from the book "Java Foundation Classes in a Nutshell".
 * Written by David Flanagan. Copyright (c) 1999 by O'Reilly & Associates.  
 * You may distribute this source code for non-commercial purposes only.
 * You may study, modify, and use this example for any purpose, as long as
 * this notice is retained.  Note that this example is provided "as is",
 * WITHOUT WARRANTY of any kind either expressed or implied.
 */

import javax.swing.*;
import javax.swing.event.*;
import java.io.*;
import java.util.Date;

/**
 * This class implements a simple directory browser using the HTML
 * display capabilities of the JEditorPane component.
 **/
public class FileTableHTML {
  public static void main(String[] argsthrows IOException {
    // Get the name of the directory to display
    String dirname = (args.length>0)?args[0]:System.getProperty("user.home");

    // Create something to display it in.
    final JEditorPane editor = new JEditorPane();
    editor.setEditable(false);               // we're browsing not editing
    editor.setContentType("text/html");      // must specify HTML text
    editor.setText(makeHTMLTable(dirname));  // specify the text to display
  
    // Set up the JEditorPane to handle clicks on hyperlinks
    editor.addHyperlinkListener(new HyperlinkListener() {
      public void hyperlinkUpdate(HyperlinkEvent e) {
  // Handle clicks; ignore mouseovers and other link-related events
  if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
    // Get the HREF of the link and display it.
    editor.setText(makeHTMLTable(e.getDescription()));
  }
      }
    });

    // Put the JEditorPane in a scrolling window and display it.
    JFrame frame = new JFrame("FileTableHTML");
    frame.getContentPane().add(new JScrollPane(editor));
    frame.setSize(650500);
    frame.setVisible(true);
  }

  // This method returns an HTML table representing the specified directory
  public static String makeHTMLTable(String dirname) {
    // Look up the contents of the directory
    File dir = new File(dirname);
    String[] entries = dir.list();

    // Set up an output stream we can print the table to.
    // This is easier than concatenating strings all the time.
    StringWriter sout = new StringWriter();
    PrintWriter out = new PrintWriter(sout);
    
    // Print the directory name as the page title
    out.println("<H1>" + dirname + "</H1>");

    // Print an "up" link, unless we're already at the root
    String parent = dir.getParent();
    if ((parent != null&& (parent.length() 0)) 
      out.println("<A HREF=\"" + parent + "\">Up to parent directory</A><P>");

    // Print out the table
    out.print("<TABLE BORDER=2 WIDTH=600><TR>");
    out.print("<TH>Name</TH><TH>Size</TH><TH>Modified</TH>");
    out.println("<TH>Readable?</TH><TH>Writable?</TH></TR>");
    for(int i=0; i < entries.length; i++) {
      File f = new File(dir, entries[i]);
      out.println("<TR><TD>" 
      (f.isDirectory() ?
         "<a href=\""+f+"\">" + entries[i"</a>" 
         entries[i]) +
      "</TD><TD>" + f.length() +
      "</TD><TD>" new Date(f.lastModified()) 
      "</TD><TD align=center>" (f.canRead()?"x":" "+
      "</TD><TD align=center>" (f.canWrite()?"x":" "+
      "</TD></TR>");
    }
    out.println("</TABLE>");
    out.close();

    // Get the string of HTML from the StringWriter and return it.
    return sout.toString();
  }
}


           
         
    
  
Related examples in the same category
1. 创建目录
2. Create directory along with required nonexistent parent directories
3. 创建目录树(套/级联文件夹)
4. 递归的创建一个目录
5. Copying a Directory: Copies files under srcDir to dstDir, if dstDir does not exist, it will be created.
6. Delete a non-empty directory: Deletes all files and subdirectories under dir.
7. 列出文件或子目录
8. 列出文件系统根
9. 列出目录列出目录
10. 使用名单方法审查的目录内容
11. 阅读和打印目录层次阅读和打印目录层次
12. 在一个JTree显示一个文件系统在一个JTree显示一个文件系统
13. 文件树演示文件树演示
14. A standalone program that deletes a specified file or directory
15. 获得文件或目录的最后修改时间
16. 上次文件或目录的修改时间设置
17. 清单内容目录
18. 判断是否存在文件或目录
19. 确定文件或目录是隐藏
20. 检查目录是否为空
21. 取得父目录的名称
22. 获取指定名称的文件或目录
23. 获取当前目录
24. 制作只读文件或目录
25. 重命名文件或目录
26. 遍历所有的文件和目录下的目录
27. Traversing only directories under dir
28. Traversing only files under dir
29. Creates and displays a window containing a list of files and sub-directories in a specified directory
30. 计算目录大小
31. 递归的删除目录
32. Determining If Two Filename Paths Refer to the Same File
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.