首頁  >  文章  >  資料庫  >   jsp源码实例1(输出)_MySQL

 jsp源码实例1(输出)_MySQL

WBOY
WBOY原創
2016-06-01 14:07:54891瀏覽

  package coreservlets;

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

/** Simple servlet that generates HTML.
*


* Taken from Core Servlets and JavaServer Pages
* from Prentice Hall and Sun Microsystems Press,
* http://www.coreservlets.com/.
* © 2000 Marty Hall; may be freely used or adapted.
*/

public class HelloWWW2 extends HttpServlet {
public void doGet(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
String docType =
""-//W3C//DTD HTML 4.0 " +
"Transitional//EN\">\n";
out.println(docType +
"\n" +
"

Hello WWW\n" +
"\n" +
"

Hello WWW

\n" +
"");
}
}
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn