JTextPane doesn't display JScrollPane and doesn't Wrap Text
I need to display links so I'm using JTextPane with setContentType. However, the content doesn't wrap and there's no scroll. The content of JTextPane will be returned from a RSS feed. Here's the full code: import java.awt.*; import javax.swing.*; class Main extends JFrame { JFrame frame; JTabbedPane tabbedPane; JPanel home, news; public Main() { setTitle("My Title" ); setSize( 900, 600 ); setLocationRelativeTo(null); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); home(); news(); tabbedPane = new JTabbedPane(); tabbedPane.addTab( " Home", home ); tabbedPane.addTab( "News", news ); JPanel