Buscar
Social
Ofertas laborales ES

Foro sobre Java SE > JTexarea actualizada al momento ¿?

Hola

Sabeis que le tengo que poner a una jtextarea para, segun hace ciertas cosas mi programa swing, poder actualziar su contenido?

gracias

junio 21, 2012 | Unregistered CommenterMiAbuelo

jTextArea1.append("hola");

con esto escribes, simplemente.

Es posible con no estés actualizando la interfaz. debes diseñar en el código un patrón de diseño SWING, JFrame

public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
new Main();
} catch (Exception e) {
e.printStackTrace();
}
}

public class Main {
/**
*/
public Main() {
JFrame frame = new RuletaMagic();
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimension frameSize = frame.getSize();
if (frameSize.height > screenSize.height) {
frameSize.height = screenSize.height;
}
if (frameSize.width > screenSize.width) {
frameSize.width = screenSize.width;
}
frame.setLocation( ( screenSize.width - frameSize.width ) / 2, ( screenSize.height - frameSize.height ) / 2 );
frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
frame.setVisible(true);
}

public class RuletaMagic extends JFrame {
...
}

julio 5, 2012 | Unregistered Commenterjuancxo