为什么我获得是空值,求解

来源:2-1 获取初始化参数

慕瓜3482629

2016-11-19 19:40

http://img.mukewang.com/58303a210001779108390315.jpg为什么我获得是空值,求解

写回答 关注

5回答

  • qq_不囧_0
    2017-09-30 09:55:07

    确实需要注意加上引号,谢谢各位提醒:

    this.setUsername(this.getInitParameter("username"));

    this.setPassword(this.getInitParameter("password"));


  • future_pig
    2017-02-23 10:28:53

    public void init() throws ServletException {

    super.init();//需要加上这条语句就好啦

    this.setUsername(this.getInitParameter("username"));

    this.setPassword(this.getInitParameter("password"));

    }


  • 慕瓜3482629
    2016-11-21 17:11:21

    加了啊

  • mjjlyq
    2016-11-21 17:05:16

    public void init() throws ServletException {

    this.setUsername(this.getInitParameter("username"));

    this.setPassword(this.getInitParameter("password"));

    是不是username和password没有加双引号啊

  • 杨歆同学
    2016-11-20 23:47:08

    你是不是同时用了config的初始化?

JAVA遇见HTML——Servlet篇

本门课程在JSP课程的基础上,深入介绍Servlet的基础知识

160615 学习 · 1029 问题

查看课程

相似问题