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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.