JAVA-一个简单的JSP程序(HelloWorld)

  • Post author:
  • Post category:java






相关资料:


《21天学通Java Web开发》




实例代码:



1.在虚拟目录下新建一个“HeoolWorld.jsp”文件。



2.“HeoolWorld.jsp”文件内容如下:




 1 <html>
 2   <head>
 3     <title>第一个JSP程序</title>
 4   </head>
 5   <boby>
 6     <%
 7       out.println("Hello,World!");//网页上输出“Hello,World!”语句    
 8     %>
 9   </boby>
10 </html> 


View Code


3.在IE中输入“http://localhost:8080/test/heoolworld.jsp”



4.在网页中就可以看到“HeoolWorld!”的内容了。