现在我正在为一个已经使用了一段时间的应用程序建立Nimbus外观。
该应用程序包含一些我想要显示垂直和水平线的JTree
。
在我之前使用的java版本1.7中,使用UIDefaults
中的特定条目很容易设置:
UIManager.put("Tree.drawVerticalLines", true);
和
UIManager.put("Tree.drawHorizontalLines", true);
正如上面暗示的那样,只要我使用jre与verion 1.7一起工作就完全没问题,只要我使用1.8,JTree
中的垂直线就不会显示。
我只是想问一下是否有人知道这是否是java 1.8下已知的Nimbus问题,如果有的话,有没有人知道这个问题的解决方案或解决方法?
编辑:这里有一些示例代码来澄清我的问题:
public class test
{
public static void main(String args[]) throws IOException, ClassNotFoundException, InstantiationException, IllegalAccessException
{
try {
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException
| UnsupportedLookAndFeelException e) {
e.printStackTrace();
}
UIManager.put("Tree.drawVerticalLines", true);
UIManager.put("Tree.drawHorizontalLines", true);
UIManager.put("Tree.linesStyle", "dashed");
DefaultMutableTreeNode top = new DefaultMutableTreeNode("Root");
top.add(new DefaultMutableTreeNode("Branch1"));
top.add(new DefaultMutableTreeNode("Branch2"));
top.add(new DefaultMutableTreeNode("Branch3"));
((DefaultMutableTreeNode)top.getFirstChild()).add(new DefaultMutableTreeNode("Leaf1"));
((DefaultMutableTreeNode)top.getFirstChild()).add(new DefaultMutableTreeNode("Leaf2"));
JFrame frame = new JFrame();
JTree tree = new JTree(top);
frame.setSize(new Dimension(450,300));
JScrollPane scroll = new JScrollPane(tree);
frame.add(scroll);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
这只是一个示例代码,而不是我目前正在使用的实际软件,因此我认为这个问题取决于我在两个代码中所做的错误或者它在java-version 1.8中的一些问题。
使用jdk1.7和jdk1.8会产生两种不同的结果:
jdk1.7
jdk1.8
正如您所看到的,1.8版本中的水平线缺失。
抱歉语法错误,我不是母语人士。
答案 0 :(得分:1)
原因未知(错误?),但似乎使用UIManager.getLookAndFeelDefaults().put("Tree.drawVerticalLines", true);
代替UIManager.put("Tree.drawVerticalLines", true);
(Windows 10上的jdk1.8.0_131)可以正常工作:
import java.awt.*;
import javax.swing.*;
public class NimbusDrawVerticalLinesTest {
public static void main(String... args) {
EventQueue.invokeLater(() -> {
try {
UIManager.setLookAndFeel("javax.swing.plaf.nimbus.NimbusLookAndFeel");
} catch (Exception e) {
e.printStackTrace();
}
// UIManager.put("Tree.drawVerticalLines", true);
UIManager.getLookAndFeelDefaults().put("Tree.drawVerticalLines", true);
UIManager.put("Tree.drawHorizontalLines", true);
UIManager.put("Tree.linesStyle", "dashed");
JTree tree = new JTree();
// UIDefaults d = new UIDefaults();
// d.put("Tree.drawVerticalLines", Boolean.TRUE);
// tree.putClientProperty("Nimbus.Overrides", d);
JFrame f = new JFrame();
f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
f.getContentPane().add(new JScrollPane(tree));
f.setSize(320, 240);
f.setLocationRelativeTo(null);
f.setVisible(true);
});
}
}
答案 1 :(得分:0)
我想我找到了解决这个问题的方法。 我刚刚实现了自己的SynthTreeUI类并覆盖了“paintVerticalPartOfLeg()” - 方法。
我已经从BasicTreeUI类中采用了几乎一对一的代码,但有两点差异。
这个类有两个条件我必须删除才能使它适用于我的程序,因为我无法访问超类的变量。
我删除这些部分后,JTree的外观恢复正常。
这里是上面提到的代码片段:
if (!paintLines) {
return;
}
和
if (leftToRight) {
lineX = lineX - getRightChildIndent() + insets.left;
}
else {
lineX = tree.getWidth() - lineX - insets.right +
getRightChildIndent() - 1;
}
因为在运行时没有抛出异常,我猜它可能是导致问题的第一个异常。
“paintLines”是一个布尔属性,用于证明以下Property是否设置为true:
但即使我将此属性的值设置为true,它仍然无法工作我必须创建自己的TreeUI类。
我将两个版本的BasicTreeUI类的源代码相互比较,但在“paintVerticalPartOfLeg()”方法中找不到任何差异,也没有找到属性“paintLines”的处理方式。
所以我为我解决了这个问题,但我仍然不确定究竟是什么导致了这个问题。
你甚至能够重建我的问题还是仅影响我?
我不认为我有时间在不久的将来进一步检查这个问题,所以如果有人找到导致问题的原因,我会很感激,会将其发布在这个帖子中。