jtree一般的用法是:

1. 展示电脑中文件的层次结构,如图所示.

具体的代码:

package jtree;

import java.io.File;

import javax.swing.JTree;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeModel; public class ZJtree extends JTree { private static final long serialVersionUID = -581164150235777786L;
private static final String ROOT_NAME = "我的电脑";
private static final int levelUp = 3; public ZJtree() {
this.setModel(new DefaultTreeModel(createRootNode()));
} public DefaultMutableTreeNode createRootNode(){
DefaultMutableTreeNode treeNode = null;
DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode(ROOT_NAME);
for(int i = 0; i < File.listRoots().length ; i++){
if(File.listRoots()[i].isDirectory()){
String rootPath = File.listRoots()[i].getPath();
treeNode = creatDefaultMutableTreeNode(rootPath,0);
rootNode.add(treeNode);
treeNode = null;
}
} return rootNode;
} private DefaultMutableTreeNode creatDefaultMutableTreeNode(String nodePath,int level) {
DefaultMutableTreeNode node = new DefaultMutableTreeNode(nodePath);
DefaultMutableTreeNode treeNode = null;
level = level+1;
File file = new File(nodePath);
if(file.isDirectory() && file.listFiles() != null){
for(int i = 0; i < file.listFiles().length && level < levelUp; i++){
if(file.listFiles()[i].isDirectory()){
String rootPath = file.listFiles()[i].getPath();
treeNode = creatDefaultMutableTreeNode(rootPath,level);
node.add(treeNode);
treeNode = null;
}
}
} return node;
} }

说明:限制层次的原因是因为电脑中文件过多,一直加载会比较的慢,以后我们会在处理这个问题。

看到上面的那个界面的第一个反应,就是好丑啊,我们慢慢的优化。在树节点的选择上面,增加combox,一步一步的来。

首先我们新建一个扩展自Jtree的自定义类:

public class ZTreeCheckBox extends JTree {

    private static final long serialVersionUID = -581164150235777786L;
private static final String ROOT_NAME = "p";
private static final int levelUp = 3; public ZTreeCheckBox() {
this.setModel(new DefaultTreeModel(createRootNode()));
this.setCellRenderer(new ChectBoxTreeCellRender());
this.addCheckSelectListender();
} private void addCheckSelectListender() {
this.addMouseListener(new CheckBoxTreeNodeListender(this));
} public CheckBoxTreeNode createRootNode(){
CheckBoxTreeNode treeNode = null;
CheckBoxTreeNode rootNode = new CheckBoxTreeNode(ROOT_NAME);
for(int i = 0; i < File.listRoots().length ; i++){
if(File.listRoots()[i].isDirectory()){
String rootPath = File.listRoots()[i].getPath();
treeNode = creatDefaultMutableTreeNode(rootPath,0);
rootNode.add(treeNode);
treeNode = null;
}
} return rootNode;
} private CheckBoxTreeNode creatDefaultMutableTreeNode(String nodePath,int level) {
CheckBoxTreeNode node = new CheckBoxTreeNode(nodePath);
CheckBoxTreeNode treeNode = null;
level = level+1;
File file = new File(nodePath);
if(file.isDirectory() && file.listFiles() != null){
for(int i = 0; i < file.listFiles().length && level < levelUp; i++){
if(file.listFiles()[i].isDirectory()){
String rootPath = file.listFiles()[i].getPath();
treeNode = creatDefaultMutableTreeNode(rootPath,level);
node.add(treeNode);
treeNode = null;
}
}
} return node;
}
}

tree 的数据的组织形式,还和原来一样,但是我们需要tree的节点的形式是Combox形式的,最起码前面要是一个可选的样子,所以我们自定义一个TreeCellRenderer,我们在显示的时候可以是一个Jpanel,其中包含一个combox,一个Jlabel代码如下:

public class ChectBoxTreeCellRender extends JPanel implements
TreeCellRenderer { private static final long serialVersionUID = 4676667399191240255L; protected JCheckBox check;
protected CheckBoxTreeLabel label;
// protected JLabel label;
public ChectBoxTreeCellRender() {
setLayout(null);
add(check = new JCheckBox());
add(label = new CheckBoxTreeLabel());
// add(label = new JLabel());
check.setBackground(UIManager.getColor("Tree.textBackground"));
label.setForeground(UIManager.getColor("Tree.textForeground"));
this.setPreferredSize(new Dimension(100, 20));
} /* (non-Javadoc)
* @see javax.swing.tree.TreeCellRenderer#getTreeCellRendererComponent(javax.swing.JTree, java.lang.Object, boolean, boolean, boolean, int, boolean)
*/
@Override
public Component getTreeCellRendererComponent(JTree tree, Object value,
boolean selected, boolean expanded, boolean leaf, int row,
boolean hasFocus) {
String stringValue = tree.convertValueToText(value, selected, expanded,
leaf, row, hasFocus);
setEnabled(tree.isEnabled());
check.setSelected(((CheckBoxTreeNode) value).isSelect());
label.setFont(tree.getFont());
label.setText(stringValue);
label.setSelected(selected);
label.setFocus(hasFocus);
if (leaf)
label.setIcon(UIManager.getIcon("Tree.leafIcon"));
else if (expanded)
label.setIcon(UIManager.getIcon("Tree.openIcon"));
else
label.setIcon(UIManager.getIcon("Tree.closedIcon")); return this;
}
@Override
public void doLayout() {
Dimension dCheck = check.getPreferredSize();
Dimension dLabel = label.getPreferredSize();
int yCheck = 0;
int yLabel = 0;
if (dCheck.height < dLabel.height)
yCheck = (dLabel.height - dCheck.height) / 2;
else
yLabel = (dCheck.height - dLabel.height) / 2;
check.setLocation(0, yCheck);
check.setBounds(0, yCheck, dCheck.width, dCheck.height);
label.setLocation(dCheck.width, yLabel);
label.setBounds(dCheck.width, yLabel, dLabel.width, dLabel.height);
} @Override
public void setBackground(Color color) {
if (color instanceof ColorUIResource)
color = null;
super.setBackground(color);
}
}

关于选中了节点以后,label是否出现阴影表示选择,在这里不是重点,这个扩展CheckBoxTreeLabel,会放在git上,现在我们关注的是Jlabel和Combox的结合而成的JPanel。

现在我们还缺少一个选择以后,Combox能够显示选中,所以我们还需要增加增加一个节点选择的监听:

public class CheckBoxTreeNodeListender extends MouseAdapter {

    private ZTreeCheckBox zTreeCheckBox = null;

    public CheckBoxTreeNodeListender(ZTreeCheckBox zTreeCheckBox) {

        this.zTreeCheckBox = zTreeCheckBox;
} // 被选中事件
@Override
public void mousePressed(MouseEvent event) { if(event.getSource() instanceof ZTreeCheckBox){
Point p = event.getPoint();
int row = zTreeCheckBox.getRowForLocation(p.x, p.y);
TreePath path = zTreeCheckBox.getPathForRow(row);
if (path != null) {
CheckBoxTreeNode node = (CheckBoxTreeNode) path
.getLastPathComponent();
if (node != null) {
boolean isSelected = !node.isSelect();
node.setSelected(isSelected);
((DefaultTreeModel) zTreeCheckBox.getModel()).nodeStructureChanged(node);
}
}
} // else{
// String comm = ((JButton)event.getSource()).getActionCommand();
// }
//
} }

最后我们得到是这个样子的:

左边的按钮,表示的选择的操作:

① 全部的选中

② 全部的不选中

③ 选择一个子树

④ 去除某一个子树

一种实现的思路,是在选择的事件分为四类,然后实现对应的逻辑,也就是对每一个节点的选择做出操作。在CheckBoxTreeNodeListender 的监听响应中添加:

// 被选中事件
@Override
public void mousePressed(MouseEvent event) {
Point p = event.getPoint();
int row = zTreeCheckBox.getRowForLocation(p.x, p.y);
TreePath path = zTreeCheckBox.getPathForRow(row); if(event.getSource() instanceof ZTreeCheckBox){
if (path != null) {
CheckBoxTreeNode node = (CheckBoxTreeNode) path
.getLastPathComponent();
if (node != null) {
boolean isSelected = !node.isSelect();
node.setSelected(isSelected);
((DefaultTreeModel) zTreeCheckBox.getModel()).nodeStructureChanged(node);
}
}
} else{
String comm = ((JButton)event.getSource()).getActionCommand();
if("SelectAll".equals(comm)){
CheckBoxTreeNode node = (CheckBoxTreeNode) path.getLastPathComponent();
selectAllNode(node,true);
((DefaultTreeModel) zTreeCheckBox.getModel()).nodeStructureChanged(node);
}else if("DeselectAll".equals(comm)){
CheckBoxTreeNode node = (CheckBoxTreeNode) path.getLastPathComponent();
selectAllNode(node,false);
((DefaultTreeModel) zTreeCheckBox.getModel()).nodeStructureChanged(node);
}
}
//
} private void selectAllNode(CheckBoxTreeNode node,boolean select) {
if (node != null) {
node.setSelected(select);
if(node.getChildCount() > 0 ){
for (int i = 0; i < node.getChildCount(); i++) {
CheckBoxTreeNode child = (CheckBoxTreeNode) node.getChildAt(i);
selectAllNode(child,select);
}
} } }

类似的实现,即可满足条件,封装性不是很好,有时间在进行重构,抽成一个借口,和对应的实现。

下一篇我们的实现成这样:

改变树节点的图片,变得好看一点。

jtree(选择框)的更多相关文章

  1. java、easyui-combotree树形下拉选择框

    最近一直在研究这个树形的下拉选择框,感觉非常的有用,现在整理下来供大家使用: 首先数据库的表架构设计和三级菜单联动的表结构是一样,(父子关系) 1.下面我们用hibernate建一下对应的额实体类: ...

  2. Notes: select选择框

    HTML选择框通过select标签创建,该元素是HTMLSelectElement的实例,拥有以下属性和方法: selectedIndex:选中项的索引 options:选择框的所有选项 add:向选 ...

  3. AngularJS Select(选择框)

    AngularJS 可以使用数组或对象创建一个下拉列表选项. 使用 ng-option 创建选择框 在 AngularJS 中我们可以使用 ng-option 指令来创建一个下拉列表,列表项通过对象和 ...

  4. FancySelect – 更好用的 jQuery 下拉选择框插件

    FancySelect 这款插件是 Web 开发中下拉框功能的一个更好的选择.FancySelect 使用方便,只要绑定页面上的任何 Select 元素,并调用就 .fancySelect() 就可以 ...

  5. 【代码笔记】iOS-时间选择框

    一, 效果图. 二,工程图. 三,代码. RootViewController.h #import <UIKit/UIKit.h> @interface RootViewControlle ...

  6. 【代码笔记】iOS-点击出现选择框

    一,效果图. 二,工程图. 三,代码. RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController ...

  7. 【代码笔记】iOS-单项选择框

    一,效果图. 二,工程图. 三,代码. RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController ...

  8. Java——文件选择框:JFileChooser

    import java.awt.BorderLayout; import java.awt.Container; import java.awt.event.ActionEvent; import j ...

  9. Asp.net点击按钮弹出文件夹选择框的实现(网页)

    本文地址:http://www.cnblogs.com/PiaoMiaoGongZi/p/4092112.html 在Asp.net网站实际的开发中,比如:需要实现点击一个类似于FileUpload的 ...

  10. HTML、CSS小知识--兼容IE的下拉选择框select

    HTML <div class="s_h_ie"> <select id="Select1" disabled="disabled& ...

随机推荐

  1. Oracle 表分析

    ANALYZE TABLE SeikyuTbl COMPUTE Statistics FOR TABLE FOR ALL COLUMNS FOR ALL INDEXES ; 一.优化器的优化方式 Or ...

  2. 面向对象CSS (OOCSS)

    新版 OOCSS 请关注 http://www.oocss.cc/ 时下流行面向对象,那么有没有可能把样式表也面向对象一下呢,将现在的CSS(Cascading Style Sheets层叠样式表)进 ...

  3. Showing 2 changed files with 3 additions and 3 deletions.

    4  lib/matplotlib/__init__.py View   @@ -126,9 +126,9 @@ def compare_versions(a, b):     else: ...

  4. java和javax都是Java的API包,java是核心包,javax的x是extension的意思,也就是扩展包。

    java和javax都是Java的API包,java是核心包,javax的x是extension的意思,也就是扩展包.

  5. java关键字-transient

    java语言的关键字,变量修饰符,如果用transient声明一个实例变量,当对象存储时,它的值不需要维持. Java的serialization提供了一种持久化对象实例的机制.当持久化对象时,可能有 ...

  6. hadoop权威指南 chapter2 MapReduce

    MapReduce MapReduce is a programming model for data processing. The model is simple, yet not too sim ...

  7. getChars的使用方法

    <%@ page contentType="text/html; charset=gb2312" %> <%@ page import="java.ut ...

  8. [AngularJS] Using AngularJS's ngClass

    .blue{ color: blue } .bold{ font-weight: bold; } .large{ font-size: 40px; } ngClass can accept an ar ...

  9. QT程序启动界面的使用

    当程序的初始化工作比较多,程序可能启动较长时间后,窗口才会显示出来,用户没准会抱怨程序响应的慢. 为了改善用户体验,最好在程序初始化这段时间显示logo,或者其他信息提示用户程序已启动.QT提供了QS ...

  10. mysql 的密码重置

    Windows: 1.以系统管理员登陆: 2.停止MySQL服务: 3.进入CMD,进入MySQL的安装目录,假设是D:/MySQL/MySQL Server 5.0/: 4.跳过权限检查启动MySQ ...