我試圖將JscrollPane添加到我的JTextPane中,並且它在運行時不顯示。我搜索了互聯網,大多數答案根本沒有幫助。將JscrollPane添加到JTextPane中
這是我是如何實現它在我的代碼
JTextPane t = new JTextPane();
JScrollPane s = new JScrollPane(t);
s.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);
t.setBounds(10,50,60,70);
s.setBounds(10,50,60,70);
Pane.add(t);
Pane.add(s);
可能重複的[如何有一個可滾動的JTextPane?](http://stackoverflow.com/questions/8182473/how-to-have-a-scrollable-jtextpane) –