Can't seem to add JTextArea to JScrollPane?
问题 I'm running in to a small snag here...I was trying to create a scrollable text area, and I've implemented it using the following code snippet, which I'm fairly sure is okay. I'd appreciate if you could tell me what's wrong with it? JTextArea textArea = new JTextArea(); textArea.setBackground(Color.WHITE); textArea.setPreferredSize(new Dimension(600, 200)); textArea.setWrapStyleWord(true); textArea.setLineWrap(true); JScrollPane scrollPane = new JScrollPane(textArea); scrollPane