Java - Ventanas!!!!

 
Vista:

Ventanas!!!!

Publicado por Arturo (1 intervención) el 23/02/2007 20:03:28
Hola, apenas estoy empezando a ver java y me preguntaba si me podrian decir paso a paso para la creacion de una ventana que diga hola mundo. en java.

....................................................graxias............................
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Ventanas!!!!

Publicado por Mario (622 intervenciones) el 23/02/2007 22:23:53
/*
* HelloWorldSwing.java requires no other files.
*/
import javax.swing.*;

public class HelloWorldSwing {
/**
* Create the GUI and show it. For thread safety,
* this method should be invoked from the
* event-dispatching thread.
*/
private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame("HelloWorldSwing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

//Add the ubiquitous "Hello World" label.
JLabel label = new JLabel("Hello World");
frame.getContentPane().add(label);

//Display the window.
frame.pack();
frame.setVisible(true);
}

public static void main(String[] args) {
//Schedule a job for the event-dispatching thread:
//creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
}
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Ventanas!!!!

Publicado por Mario (622 intervenciones) el 23/02/2007 22:35:14
Un xcelente manual de swing

http://java.sun.com/docs/books/tutorial/uiswing/TOC.html

Saludos comunidad open source
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar