Ti scrivo un esempio, dovrebbe andare:
import javax.swing.*;
public class GuidaFrame extends JFrame{
public GuidaFrame(){
super.setTitle("Guida");//opzionale
JPanel p=new JPanel(new BorderLayout());
JTextArea t=new JTextArea("**una stringa***")
JScrollPane pane=new JScrollPane(t);
p.add(pane, BorderLayout.CENTER);
this.getContentPane().add(p);
this.setBounds(50,50,250,200);//opzionale
this.show();
}
}