I have JTextArea working with scroll bars provided by JScrollPane. Following that pattern I have not been able to get JTextPane to show up with scroll bars.
Essentially I attach text to the JScrollPane as follows:
myJScrollPane.setViewportView(myJTextArea); // does not work with myJTextPane,
// an instance of JTextPane
No exception is thrown, the scroll bars, both horizontal and vertical simply do not appear.
Try