程序代碼: |
<web-app> ................. <init-param> <param-name>charset</param-name> <param-value>GB2312</param-value> </init-param> ................. </web-app> |
程序代碼: |
<servlet> <servlet-name>GetAtt</servlet-name> <servlet-class>mail.GetAttServlet</servlet-class> <init-param> <param-name>absPath</param-name> <param-value>/usr/mail/ax/axman/Maildir/</param-value> </init-param> </servlet> |
程序代碼: |
..... public class Test extends HttpServlet { ServletConfig config; public void init(ServletConfig config) throws ServletException { this.config = config; } .................. } |
程序代碼: |
..... public class Test extends HttpServlet { ServletConfig config; public void init(ServletConfig config) throws ServletException { super.init(config); this.config = config; } .................. } |
聯(lián)系客服