我遇到一个奇怪的问题。我有一个JtextPane内部,JscrollPane它在通讯组列表中显示大字符串,并且当我使用Eclipse运行程序时它正确包装了代码,但是当我使用java webstart运行相同程序时,它停止了包装文本。
JtextPane
JscrollPane
这是我的代码:
private JScrollPane displayResults(String distributionList) { // TODO Auto-generated method stub JTextPane textArea = new JTextPane(); textArea.setText(distributionList); textArea.setEditable(false); JScrollPane scrollPane = new JScrollPane(textArea); scrollPane.setPreferredSize( new Dimension( 500, 500 ) ); return scrollPane; }
原因可能是Java版本。
请参阅https://forums.oracle.com/forums/thread.jspa?messageID=10690405,在此进行讨论并提供解决方法