Is it possible to have a series of we pages in a .zip file that can be unzipped on any desktop and run as a java file?
Or does this Ned to be done in a applet?
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Is it possible to have a series of we pages in a .zip file that can be unzipped on any desktop and run as a java file?
Or does this Ned to be done in a applet?
What kind of pages? JSPs would be run in a server container which may not be available on every desktop. Plain web pages could be run in a web browser. What Java content would the pages have? With security issues, the Java Applet as a vehicle to share functioning code with others is essentially dead to all except those willing to pay to sign their applets, apparently not cheap.
What I want to be able to do is create a page / form which interacts with a database.
ASP & PHP are both server side I was wondering if or how I could use JAVA at client side or have what it needs deployed with the zip
Write an Applet.
Instead of a zip file, use a jar file which has the same structure. Its contents can be accessed by the java program to be executed.
If you don't understand my answer, don't ignore it, ask a question.