java – JOptionPane和滚动功能

前端之家收集整理的这篇文章主要介绍了java – JOptionPane和滚动功能前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想JList在JOptionPane中的很多结果,但是,我不知道如果添加一个滚动函数应该有太多的结果.如何将滚动条添加到JOptionPane?任何帮助都会很棒.

谢谢.

解决方法

以下是使用JScrollPane中嵌入的JTextArea的示例:
JTextArea textArea = new JTextArea("Insert your Text here");
JScrollPane scrollPane = new JScrollPane(textArea);  
textArea.setLineWrap(true);  
textArea.setWrapStyleWord(true); 
scrollPane.setPreferredSize( new Dimension( 500,500 ) );
JOptionPane.showMessageDialog(null,scrollPane,"dialog test with textarea",JOptionPane.YES_NO_OPTION);
原文链接:https://www.f2er.com/java/126227.html

猜你在找的Java相关文章