public Fenetre() { setSize(400,300); txt= new JTextArea(14,33); txt.setEditable(false); add(barre= new JScrollPane(txt, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED)); barre.setAutoscrolls(true); txt.append(nom); } public static void main( String[] args ){ Fenetre fen=new Fenetre(); fen.setVisible(true); } }