I allow my clients to run Java programs using a few shells through the Unix command prompt. If they can input input through some GUI, then it will be more effective. So it can be tested immedietely I do not want to like fro input to unix command.
Can anyone tell me how to run applet programs in Java swing or Unix?
As Thompson has mentioned, looking at Java Web Start can be a good idea .
Otherwise, if you have to use a * NIX-like terminal, an application located on a remote host and it is rendered on your local display, then you need to do some things:
- You need the X server working on the local machine
- You need to export DISPLAY to a local machine (You can do this by setting the DISPLAY environment variable on the remote system )
- Then you will get a command from the command line No Java app needs to start
Hope this helps.
Here's an example.
Comments
Post a Comment