zoukankan      html  css  js  c++  java
  • ServletContext1

    ---------------ConfigServlet.java-----------

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
      // TODO Auto-generated method stub
      request.setCharacterEncoding("GB2312");
      response.setContentType("text/html;charset=gb2312");
      PrintWriter out = response.getWriter();
      ServletConfig config = getServletConfig();
      //getInitParameter方法
      String username = config.getInitParameter("username");
      String password = config.getInitParameter("password");
      out.print("username--"+username);
      out.print("password--"+password);
      //集合方法
      Enumeration<?> e = config.getInitParameterNames();
      while(e.hasMoreElements()){
       String pusername=(String) e.nextElement();
       String ppassword = config.getInitParameter(pusername);
       out.print("<br/><b>"+pusername+"</b>&nbsp;;&nbsp;");
       out.print("------"+ppassword);
      }
      out.close();
     }

    ----------------------web.xml----------------

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
      <display-name>ServletConfig</display-name>
      <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
      </welcome-file-list>
      <servlet>
        <description>This is the description of my J2EE component</description>
        <display-name>This is the display name of my J2EE component</display-name>
        <servlet-name>ConfigServlet</servlet-name>
        <servlet-class>com.ConfigServlet</servlet-class>
        <init-param>
         <param-name>username</param-name>
         <param-value>jspuser</param-value>
        </init-param>
        <init-param>
         <param-name>password</param-name>
         <param-value>123456</param-value>
        </init-param>
      </servlet>
      <servlet-mapping>
       <servlet-name>ConfigServlet</servlet-name>
       <url-pattern>/servlet/ConfigServlet</url-pattern>
      </servlet-mapping>
    </web-app>

  • 相关阅读:
    Eclipse快捷键大全(转载)
    IE9浏览Flash页面时显示错位并不停地闪烁
    flash全屏事件和键盘按下事件部分不能触发问题
    AS3摘要(转载)
    【as3手册小记】ActionScript 中处理全屏模式的注意事项
    巧用FlashPaper 让Word文档变Flash
    AS3视频照相截图(转载)
    Json串到json对象的转换
    映射文件详解(转)
    Jquery .ajax方法分析(一)
  • 原文地址:https://www.cnblogs.com/daimazhang/p/5364988.html
Copyright © 2011-2022 走看看