- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个带有 rootNode 的 Jtree,然后创建另一个异步更新根节点的线程。
如果我在某个 JPanel 中独立运行这个 Jtree,它的效果会非常好,它甚至可以在项目中的某个地方工作,但我被要求在一些新的 swing 组件中使用这个 Jtree。
在新的 Swing Panel 中,它不会完全填充,它仅填充在 Jtree 在屏幕上呈现之前插入的节点(在开始时几毫秒)。一旦 Jtree 被渲染,它就不会被更新。现在有趣的部分是我还在节点上创建了一个鼠标监听器,以便我可以通过右键单击创建节点功能来创建一个新节点,并创建该新节点并将其添加到 Jtree 根节点上。
要添加的重要一点是,我使用 newThread(){void run}).start() 方法创建一个线程来在 Jtree 上添加节点,因为我之前从未觉得需要 SwingUtilities.invokeLater 方法。但现在,如果我使用 SwingUtilities.invokeLater 方法,主窗口也不会打开,它只是在启动过程中停止,我刚刚检查了 SwingUtilities.invokeLater 也可以与旧组件一起正常工作,当然独立工作也很好。
我确实调用 model.nodeStructureChanged(changedNode);添加节点后,这就是它之前工作正常的原因。
请帮忙,代码很难提取,并且 Jtree 代码之前工作正常,可能是某些组件阻止包含的小部件异步刷新自身?
编辑更新以包含一些代码,我正在使用 Nick 提供的 Temp 类:-
public BasicGraphEditor(String appTitle, mxGraphComponent component)
{
// Stores and updates the frame title
this.appTitle = appTitle;
// Stores a reference to the graph and creates the command history
graphComponent = component;
final mxGraph graph = graphComponent.getGraph();
undoManager = createUndoManager();
// Do not change the scale and translation after files have been loaded
graph.setResetViewOnRootChange(false);
// Updates the modified flag if the graph model changes
graph.getModel().addListener(mxEvent.CHANGE, changeTracker);
// Adds the command history to the model and view
graph.getModel().addListener(mxEvent.UNDO, undoHandler);
graph.getView().addListener(mxEvent.UNDO, undoHandler);
// Keeps the selection in sync with the command history
mxIEventListener undoHandler = new mxIEventListener()
{
@Override
public void invoke(Object source, mxEventObject evt)
{
List<mxUndoableChange> changes = ((mxUndoableEdit) evt
.getProperty("edit")).getChanges();
graph.setSelectionCells(graph
.getSelectionCellsForChanges(changes));
}
};
undoManager.addListener(mxEvent.UNDO, undoHandler);
undoManager.addListener(mxEvent.REDO, undoHandler);
// Creates the graph outline component
graphOutline = new mxGraphOutline(graphComponent);
// Creates the library pane that contains the tabs with the palettes
libraryPane = new JTabbedPane();
/////////////////////////////////////////////////
// Only change i have done here: start
////////////////////////////////////////////////
Temp tempExplorer = new Temp();
libraryPane.add("new Explorere", tempExplorer);
/////////////////////////////////////////////////
// Only change i have done here: End
////////////////////////////////////////////////
// Creates the inner split pane that contains the library with the
// palettes and the graph outline on the left side of the window
JSplitPane inner = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
libraryPane, graphOutline);
inner.setDividerLocation(320);
inner.setResizeWeight(1);
inner.setDividerSize(6);
inner.setBorder(null);
// Creates the outer split pane that contains the inner split pane and
// the graph component on the right side of the window
JSplitPane outer = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, inner,
graphComponent);
outer.setOneTouchExpandable(true);
outer.setDividerLocation(200);
outer.setDividerSize(6);
outer.setBorder(null);
// Creates the status bar
statusBar = createStatusBar();
// Display some useful information about repaint events
installRepaintListener();
// Puts everything together
setLayout(new BorderLayout());
add(outer, BorderLayout.CENTER);
add(statusBar, BorderLayout.SOUTH);
installToolBar();
// Installs rubberband selection and handling for some special
// keystrokes such as F2, Control-C, -V, X, A etc.
installHandlers();
installListeners();
updateTitle();
}
上面的类来自 Jgraph 库 https://github.com/jgraph/jgraphx我只是像上面一样添加 jtree 组件,没有其他更改。请帮忙。
最佳答案
除非明确声明,否则 Swing 不是线程安全的。在 the JavaDocs for JTree ,它明确表示这不是线程安全的。如果您在 EDT 之外的线程中更新它,则无法保证任何内容都能正常工作。因此,如果您想从不同的线程更新 JTree,则需要使用 SwingUtilities.invokeLater(Runnable run);
以便将请求放在 EDT 上。
我建议使用一个数据结构来存储 JTree 的信息,并且仅使用 JTree 进行用户交互(而不是数据存储)。
编辑
下面是在组件模型中使用 SwingUtilities.invokeLater()
更新 JTree 的示例。无需您发布任何代码,这是我必须使用的最好的方法。请尝试使用它来重现您的问题(将您的代码片段添加到此示例中,直到您缩小问题范围)。
import java.awt.*;
import javax.swing.*;
import javax.swing.tree.*;
public class Temp extends JPanel{
JTree tree = new JTree();
public Temp(){
JScrollPane jsp = new JScrollPane(tree);
// Creates the library pane that contains the tabs with the palettes
JTabbedPane libraryPane = new JTabbedPane();
libraryPane.add("new Explorere", jsp);
// Creates the inner split pane that contains the library with the
// palettes and the graph outline on the left side of the window
JSplitPane inner = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
libraryPane, new JPanel());
inner.setDividerLocation(320);
inner.setResizeWeight(1);
inner.setDividerSize(6);
inner.setBorder(null);
// Creates the outer split pane that contains the inner split pane and
// the graph component on the right side of the window
JSplitPane outer = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, inner,
new JPanel());
outer.setOneTouchExpandable(true);
outer.setDividerLocation(200);
outer.setDividerSize(6);
outer.setBorder(null);
// Puts everything together
setLayout(new BorderLayout());
add(outer, BorderLayout.CENTER);
}
public static void main(String[] args) {
final Temp temp = new Temp();
SwingUtilities.invokeLater(new Runnable(){
@Override
public void run() {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setContentPane(temp);
frame.pack();
frame.setVisible(true);
}});
Thread updater = new Thread(temp.new CustomThread());
updater.start();
}
public class CustomThread implements Runnable{
@Override
public void run() {
for(int i = 0; i < 1000; i++){
updateTree("New Item "+ i);
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public void updateTree(final String nodeToAdd){
SwingUtilities.invokeLater(new Runnable(){
@Override
public void run() {
DefaultTreeModel model = (DefaultTreeModel) tree.getModel();
DefaultMutableTreeNode root = (DefaultMutableTreeNode) tree.getModel().getRoot();
DefaultMutableTreeNode child = new DefaultMutableTreeNode(nodeToAdd);
model.insertNodeInto(child, root,root.getChildCount());
tree.scrollPathToVisible(new TreePath(child.getPath()));
}});
}
}
}
关于java - JTree 异步节点创建与 JGraph 库不一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13975810/
我正在尝试动态使用 JTree 组件。在根节点下,我有四个节点,其中之一(“操作”)可以有 0 到多个子节点。这是由用户通过根据用户请求打开的单独窗口中的可编辑列表来设置的。编辑此列表后,用户点击“保
我阅读了很多有关此的主题,但仍然存在一些问题。我正在使用 NB 的 java 桌面项目。我已经从调色板创建了树,现在每次单击按钮后我想创建新树并刷新它。所以我在我想让新的 jTree 添加一些 Def
应用简单,一个框架中有两个面板 第一个面板,从数据库中检索所有学生,使用多个 hashmap 获取父子排列并将其显示在树上。 第二个面板,当您点击一个学生时,该学生的所有详细信息 (selection
我有两个 JTrees,里面有一些模拟数据,我想要做的是能够接受每个“工作”(15663-1、15663-2 等)并为每个创建一个节点,它下面的每个部分都有一个节点,以及连接到它下面每个部分的组件。在
当我在 JMenu 上单击鼠标时,它可以正常工作。 我将鼠标移开,它就消失了(正常)。然后我双击我的 JTree 中唯一的条目。 然后,当我单击我的 JMenu 时,它看起来像这样。它出现在 JTre
当我尝试动态更新我的 JTree 时,它工作得很好,但只显示我的新树。但后来我尝试将它添加到 JFrame - 什么也没有发生。 JTree 不更新。我不明白为什么。 public MainFor
我在名为 TreeFrame 的 JFrame 子类的构造函数中包含此代码。我想在 JTree 中显示 3 个级别,每个级别 10 个项目。为什么这会按预期工作: private DefaultTre
我目前在使用 JTree 的单元格编辑器时遇到问题。我的 JTree 中有两个不同的对象:Users 和 Books。 所以用户是 Bianca,书籍是节点。这些节点内的标签(眼睛、油漆标签和垃圾桶)
如何获得 JTree只听其TreeModel虽然它实际上对用户可见,或者至少让它在相应的 JFrame 后立即取消注册。被处置了吗? 据我所知,JTree 从其模型中取消注册的唯一情况是,如果您向它传
我在扩展 JTree 时遇到了奇怪的问题。我尝试将 JTree 添加到 JScrollPane。 树应该恢复到展开状态,但它不起作用 - 树已折叠。 代码如下: if (expansionSta
我想要发生的是在编辑 JTree 时,如果我在编辑框外单击,我想提交编辑。tree.setInvokesStopCellEditing(true); 有所帮助,如果我单击 JTree 中的某处,就会提
我有一个 JTree当用户将鼠标悬停在树节点上时,我想向用户显示一些描述。 我从文档中读到我们可以使用 MouseMotionListener为此。但是我怎样才能获得鼠标移动到的节点的值呢? 任何指针
我正在使用 JTree 并在此命名 JTree 节点 我正在使用右键单击(通过弹出窗口重命名)或 F2 键或双击。但问题是:当我重命名一个名称并按下 Enter 键时,节点成功重命名,当我重命名一个名
我正在使用 Netbeans 在 JAVA 中开发一个小型桌面应用程序。我放置了一个 JTree 并动态填充它。现在一切顺利,我想实现以下两件事: 当填充 JTree 时,它会自动展开它将开始显示
我创建了一个树单元渲染器/编辑器框架,诚然有点老套,但它在 Windows 和 Linux 上运行得很好。下图展示了一个示例设置。 目标是,如果用户单击图像(数字)1 或 2,则应用程序会响应该单击,
我有两个关于 Icons 的问题。 我使用 ImageIcons 作为 JTree 上的默认图标。按照教程的建议,我使用此方法加载图标: protected ImageIcon createImage
我目前正在使用 JTree,更准确地说是使用 CheckBoxTree,这是一个由 JIDE 创建的继承类。我需要找到一种重置树的方法,意思是: 清除选择 删除节点 我尝试取消设置 Tree 变量、t
假设我的 JTree 由以下节点组成。 new DefaultMutableTreeNode("DisplayThisTextOnly {donotdisplaystringsinhere}"); 如
双击时,我将双击的 Jtree 节点的背景突出显示为绿色。当我双击其他节点时,之前选择的绿色节点应该恢复到原来的状态,并且新双击的节点应该亮起绿色。 它在某种程度上起作用,但行为不一致。当我双击子节点
我有这个 Jtree,我必须在我的 tbltables 表中插入“表”。 (我的意思是我的 MSQL 数据库中有一个名为 tbltables 的表,其中有一个表列表)。 所以这些表中也可以有表。所以现
我是一名优秀的程序员,十分优秀!