views:

61

answers:

3

Hi,

I have a java web application . Currently the application is installed in a cli mode [on windows/linux /solaris] by running sh or cmd scripts. I would like to create a GUI for the App installation so that user can edit info in gui for the installation.

Any pointers/Best practices for developing gui would be helpful.

thank you

A: 

Check out Swing. This is the GUI framework that comes with Java.

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

public class Swing extends JFrame{
  public static void main(String args[]){
    new Swing();
  }
  public Swing(){
    JLabel label = new JLabel("Hello world!");
    add(label);
    setSize(100,100);
    setVisible(true);
  }
}
Michael Angstadt
+1  A: 

IzPack (http://izpack.org/) is one that seems stable and actively developed.

cjstehno
+1  A: 

this covers it.

http://stackoverflow.com/questions/856772/create-installer

daedlus