为啥没有javax.swing.JTree.DefaultMutableTreeNode
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥没有javax.swing.JTree.DefaultMutableTreeNode相关的知识,希望对你有一定的参考价值。
导入不了javax.swing.JTree.DefaultMutableTreeNode,还有请教一下JTREE的用法,谢谢
高分敬上
在实际开发过程中会经常使用JTree组件,平时会遇到这样或那样的问题,在此将偶得一点经验写下来,与大家共享,希望对大家有所帮助。
private JTree jtNetDevice;//数组件申明
private JScrollPane jspTree;//滚动面板申明
1、初始化
DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("root");
jtNetDevice = new JTree(rootNode);
jtNetDevice.setAutoscrolls(true);
getTreeSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);//设置单选模式
jspTree = new JScrollPane();
jspTree.getViewport().add(jtNetDevice, null);
2、三个经常使用的取值函数
private DefaultTreeModel getTreeModel()
return (DefaultTreeModel)jtNetDevice.getModel();
private DefaultMutableTreeNode getRootNode()
return (DefaultMutableTreeNode)getTreeModel().getRoot();
private TreeSelectionModel getTreeSelectionModel()
return jtNetDevice.getSelectionModel();
3、根据node得到path:
TreePath visiblePath = new TreePath(getTreeModel().getPathToRoot(node));
4、根据Path展开到该节点
jtNetDevice.makeVisible(visiblePath);
5、根据path设定该节点选定
jtNetDevice.setSelectionPath(visiblePath);
6、选中节点的方法
首先,根据节点得到树路径,其中chosen为需要选中的节点
TreePath visiblePath = new TreePath( ( (DefaultTreeModel) jtNetDevice.getModel()).
getPathToRoot(chosen));
然后根据Path选中该节点
jtNetDevice.setSelectionPath(visiblePath);
7、滚动到可见位置
jtNetDevice.scrollPathToVisible(visiblePath);
8、给JTree添加右键弹出菜单
void jtNetDevice_mouseReleased(MouseEvent e)
if (e.isPopupTrigger())
jPopupMenu1.show(e.getComponent(), e.getX(), e.getY());//弹出右键菜单
9、关于JTree的展开
// If expand is true, expands all nodes in the tree.
// Otherwise, collapses all nodes in the tree.
public void expandAll(JTree tree, boolean expand)
TreeNode root = (TreeNode)tree.getModel().getRoot();
// Traverse tree from root
expandAll(tree, new TreePath(root), expand);
private void expandAll(JTree tree, TreePath parent, boolean expand)
// Traverse children
TreeNode node = (TreeNode)parent.getLastPathComponent();
if (node.getChildCount() >= 0)
for (Enumeration e=node.children(); e.hasMoreElements(); )
TreeNode n = (TreeNode)e.nextElement();
TreePath path = parent.pathByAddingChild(n);
expandAll(tree, path, expand);
// Expansion or collapse must be done bottom-up
if (expand)
tree.expandPath(parent);
else
tree.collapsePath(parent);
10、如何遍历JTree
// 创建树
JTree tree = new JTree();
// 添加树节点......
// 遍历所有节点
visitAllNodes(tree);
// 仅遍历展开的节点
visitAllExpandedNodes(tree);
// Traverse all nodes in tree
public void visitAllNodes(JTree tree)
TreeNode root = (TreeNode)tree.getModel().getRoot();
visitAllNodes(root);
public void visitAllNodes(TreeNode node)
// node is visited exactly once
process(node);
if (node.getChildCount() >= 0)
for (Enumeration e=node.children(); e.hasMoreElements(); )
TreeNode n = (TreeNode)e.nextElement();
visitAllNodes(n);
// Traverse all expanded nodes in tree
public void visitAllExpandedNodes(JTree tree)
TreeNode root = (TreeNode)tree.getModel().getRoot();
visitAllExpandedNodes(tree, new TreePath(root));
public void visitAllExpandedNodes(JTree tree, TreePath parent)
// Return if node is not expanded
if (!tree.isVisible(parent))
return;
// node is visible and is visited exactly once
TreeNode node = (TreeNode)parent.getLastPathComponent();
process(node);
// Visit all children
if (node.getChildCount() >= 0)
for (Enumeration e=node.children(); e.hasMoreElements(); )
TreeNode n = (TreeNode)e.nextElement();
TreePath path = parent.pathByAddingChild(n);
visitAllExpandedNodes(tree, path);
参考技术A import javax.swing.tree.DefaultMutableTreeNode;
DefaultMutableTreeNode df=new DefaultMutableTreeNode();
为啥我们没有 UIBarMetricsLandscapePad?
【中文标题】为啥我们没有 UIBarMetricsLandscapePad?【英文标题】:Why don't we have UIBarMetricsLandscapePad?为什么我们没有 UIBarMetricsLandscapePad? 【发布时间】:2013-01-27 16:53:44 【问题描述】:如何在细节拆分视图中为导航栏设置不同的背景图像,以便它处于横向而不是纵向时?
这是我使用的代码
[self.topNavbar setBackgroundImage:[UIImage imageNamed:@"nav-bar-portrait-ipad"]
forBarMetrics:UIBarMetricsDefault];
[self.topNavbar setBackgroundImage:[UIImage imageNamed:@"nav-bar-landscape-ipad"]
forBarMetrics:UIBarMetricsLandscapePhone];
当 splitView 旋转为横向时,永远不会调用 UIBarMetricsLandscapePhone。纵向 (768 px) 模式下 detailView 的宽度与横向 (704 px) 模式下的宽度不同,那么我们如何为每个设置不同的图像呢?
【问题讨论】:
【参考方案1】:导航栏在 iPad 上的不同方向不会改变高度,因此没有单独的栏指标(不需要不同高度的图像)。
在 iPhone 上,横向导航栏比纵向导航栏短,因此需要不同的图像(渐变图像不能很好地缩放)。导航背景通常一直是相同的,因此宽度通常不是考虑因素。
如果您想在旋转时更改图像,则必须响应旋转事件。
【讨论】:
我意识到高度不会改变,但宽度会改变。我不知道为什么苹果认为我们不需要新的条形指标? 你的图片是什么样的?里面有什么需要改变的?您可以使用带有左右帽子插图的可调整大小的图像吗? 它基本上是一种皮革效果活页夹,例如 cdn4.raywenderlich.com/wp-content/uploads/2012/05/… 不知道如何使这种类型的图像可调整大小...... 也许是平铺的,但您需要小心设计它的方式? (在 ios6 中,您可以为可调整大小的图像指定平铺模式而不是拉伸)以上是关于为啥没有javax.swing.JTree.DefaultMutableTreeNode的主要内容,如果未能解决你的问题,请参考以下文章
为啥我没有 NotSerializableException?
为啥这个函数序言中没有“sub rsp”指令,为啥函数参数存储在负 rbp 偏移处?