To insert a scroll bar on your new JTextPane, just use a JScrollPane: JTextPane txt = new JTextPane(); JScrollPane jsp = new JScrollPane(txt); JTextPane ...
確定! 回上一頁