editor= new JTextArea();
editor.setBackground(Color.green);
editor.setEditable(false);
editor.setLineWrap(true);
editor.setWrapStyleWord(true);
barras = new JScrollPane(editor,
JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane. HORIZONTAL_SCROLLBAR_AS_NEEDED);
barras.setViewportView(editor);
getContentPane().add(editor,BorderLayout.CENTER);
getContentPane().add(barras,BorderLayout.CENTER);
Tengo sto puesto, pero sigue sin mostrarte las barras de desplazamiento, alguien me puede ayudar??
Muchas gracias!!