java 写的文件浏览器

2016-02-19 16:29 3 1 收藏

今天天气好晴朗处处好风光,好天气好开始,图老师又来和大家分享啦。下面给大家推荐java 写的文件浏览器,希望大家看完后也有个好心情,快快行动吧!

【 tulaoshi.com - 编程语言 】

//------------------------------------------------------------
// 编译下边的类,并运行无需任何参数
//-----------------------------------------------------------
package com.swing.tree;
import java.io.*;
import java.util.*;
import javax.swing.tree.*;
public class file_path_obj
{
private String dir_tree="";
private File temp;
DefaultMutableTreeNode root=null;
public DefaultMutableTreeNode getPath_Obj()
{
if(this.root==null)
return new DefaultMutableTreeNode("null NODE");
return this.root;
}
public file_path_obj(String path)
{
try{
root= this.set(path);
}catch(Exception e)
{
System.out.println("tree error:n+++++++++++++++++++++++++++++++++");
e.printStackTrace();
}}
public DefaultMutableTreeNode set(String dir) throws Exception //第归遍历文件甲
{
File[] temp_list = null;
if(new File(dir).exists()==false)
throw new Exception("file name is null");
DefaultMutableTreeNode tempNode;
temp = new File(dir);
if(temp.isFile())
{
return new DefaultMutableTreeNode(temp.getAbsolutePath());
}
temp_list = temp.listFiles();
tempNode = new DefaultMutableTreeNode(temp.getAbsolutePath());
//设置上级菜单的名字
if(temp_list.length==0) return new DefaultMutableTreeNode(temp.getAbsolutePath());
for(int i=0;itemp_list.length;i++)
{
if(temp_list[i].isDirectory())
{
System.out.println("the file is:"+temp_list[i].getAbsolutePath());
tempNode.add(this.set(temp_list[i].getAbsolutePath()));
}
else
tempNode.add(new DefaultMutableTreeNode(temp_list[i].getAbsolutePath()));
}
return tempNode;
}
}
//------------------------------------------------------------
// 编译下边的类,并运行无需任何参数
//-----------------------------------------------------------
package com.tree;
import java.io.*;
import java.awt.*;
import javax.swing.*;
import javax.swing.tree.*;
import com.swing.tree.*;
/** Example tree built out of DefaultMutableTreeNodes.
* ycj
*/
public class pathTree extends JFrame {
public static void main(String[] args) {
try
{
BufferedReader bin = null;
bin = new java.io.BufferedReader(new InputStreamReader(System.in));
String path="";
File temp = null;
System.out.print("输入要显示的文件路径");
while(bin!=null)
{
path = bin.readLine();
if(path==null)
{
System.out.println("请输入合法的文件路径");
continue;
}
temp = new File(path);
if(temp.exists()==false||temp.isFile())
System.out.println("请输入正确的文件路径");
else
{new pathTree(path);
break;
}
}
}catch(Exception e)
{ e.printStackTrace(); }
}
public pathTree(String path)
{
super("Creating a Simple JTree");
WindowUtilities.setNativeLookAndFeel();//set the UIManager
addWindowListener(new ExitListener());
Container content = getContentPane();
file_path_obj obj = new file_path_obj(path);
System.out.println(obj.getPath_Obj());
JTree tree = new JTree(obj.getPath_Obj());//MAKE A TREE
Cursor cor = new Cursor(Cursor.HAND_CURSOR);
tree.setCursor(cor);
content.setLayout(new FlowLayout());
JPanel jp1 = new JPanel(new BorderLayout());
JPanel jp2 = new JPanel(new BorderLayout());
content.add(jp1);
content.add(jp2);
content.add(new JScrollPane(tree), BorderLayout.CENTER);
setSize(275, 500);
setVisible(true);
this.pack();
}
}

来源:http://www.tulaoshi.com/n/20160219/1612268.html

延伸阅读
标签: 浏览器
阿云浏览器如何打开文件   当您需要打开某些文件时,您可以进行如下操作:点击云logo 页面和标签打开,然后选择您需要打开的文件即可,如下图所示: 或者您也可以直接使用快捷键:Ctrl+O来打开文件。 在阿云浏览器中,可以打开的文件类型包括:HTML Files、Text Files、GIF Files、JPEG Files、AIFF Files、AU Files等...
标签: Web开发
chrome 是免费的开源 web 浏览器,它由 Google 开发。 Chrome 是什么? 当 Google 决定开发一款浏览器时,他们需要彻底地重新谋划这款浏览器,这是因为如今的浏览器与仅需要浏览简单的文本页面时有很大的不同,现在,我们在浏览器上发邮件、购物、付账单,以及运行其他的大型应用程序。 下载 Google Chrome 新特性 在经过 15 个 Beta 测...
标签: 浏览器
360极速浏览器浏览器头像的功能 1.登录网络帐户 点击浏览器头像可登录360帐户。登录360帐户的状态下,您的收藏夹、浏览器配置的修改都将自动备份到360帐户中。之后随 时登录360帐户即可自动上述内容同步到浏览器中。 2.更换头像 您可以在头像菜单里选择您喜欢的头像,用于装饰浏览器。陆续将提供更多精美的头像供您选用。 ...
标签: 浏览器
YY浏览器如何清理浏览器缓存?   YY浏览器是上网时,会经常使用到的一款网页浏览器,在用户使用浏览器的过程中,都避免不了浏览器在系统中生成相应的缓存文件,再或者用户浏览了一些隐私网址,想要清理这些数据我们就需要通过浏览器自带功能来清理,那么在YY浏览器下如何清理浏览器缓存文件呢?下面看小编为大家带来的清理方法,需要的...
标签: 浏览器
360浏览器取消默认浏览器方法   1、打开360安全卫士,如果你只安装了360浏览器没安装360安全卫士,则需要安装卫士! 2、在360主界面看到功能大全,单击更多: 3、单击 4、在弹出的窗口中,在最右侧向下拉到底部就会看到选项了,小编安装了IE浏览器、火狐浏览器和360浏览器。因此会有三个(否则会更多或更少)。 ...

经验教程

846

收藏

72
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部