1

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

Inv3r53
  • 2,929
  • 3
  • 25
  • 37

3 Answers3

1

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

cjstehno
  • 13,468
  • 4
  • 44
  • 56
1

this covers it.

How to create Java webapp installer (.exe) that includes Tomcat and MySQL?"

Community
  • 1
  • 1
Inv3r53
  • 2,929
  • 3
  • 25
  • 37
0

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
  • 34,873
  • 17
  • 75
  • 109