tags:

views:

34

answers:

1

i have a server machine where all the helper jars and classes present, which i want to use. is it possible to import those classes in my application?

+2  A: 

Sure you can import classes defined in those JAR files. But you need to have copies of the JAR files on the machine where you are building your application, and probably on the machines on which you will be running it.

If your application is an applet, it can downloaded the JARs at runtime, but that requires the JARs to be signed. There is also the option of using Java Web Start.

Stephen C