Web and database programming with java [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this questionI want to create a Java web application/applet/servlet that does this when the page loads:
Displays "Hello"
Under that, has a box to enter text
Under that, has a button that says OK.
When the user presses OK, I want the text to be saved, and then put into a Mi开发者_运维知识库crosoft Access database.
This is a vastly simplified version of my real program, but I believe that if I figure out these basic tasks I can complete my actual program. Thanks.
You can check the Java Servlet technology from the Java EE 6 tutorial. It has some examples at the end of each chapter(check the hello2 example at Part II chapter 3).
For the database you can check JDBC tutorial
精彩评论