1752796 Members
5764 Online
108789 Solutions
New Discussion

Graphic menu in HPUX

 
SOLVED
Go to solution
Henry Chua
Super Advisor

Graphic menu in HPUX

Hi Guys,

Is it practical to consider Java Swing in programming GUI menu in HPUX? what other programming language are there? and is it as easy as the GUI programming in Windows?

BEst regards
Henry
1 REPLY 1
leonardo_20
Valued Contributor
Solution

Re: Graphic menu in HPUX

yes! You can use java languages to build a good GUI interface.
Java is portable and you can use a java GUI in Windows system too.
For that you can build Java GUI with a windows program and after you can run it on unix system.. you need java virtual machine.

a simple unix line command java compiler:
javac -classpath "$CLASSPATH:/lib/lib1.jar" -sourcepath "." file1.java main.java

a simple unix line command java runner:
java -cp "$CLASSPATH:/lib/lib1.jar" main

thats all
Leonardo