为了账号安全,请及时绑定邮箱和手机立即绑定

同学们,谁能告诉我,我下面的代码怎么错了,执行不对

<body>
    <h1>request内置对象</h1>
    <%
        request.setCharacterEncoding("utf-8");//解决中文乱码问题,无法解决URL传递中文乱码问题。
    %>
    用户名:<%=request.getParameter("username")%>
    密码:<%=request.getParameter("password") %>
    爱好:<%
        String[] favorites = request.getParameterValues("favorite");
        for(int i = 0;i < favorites.length;i++){
            out.println(favorites[i]+"&nbsp;&nbsp;");
        }
    %>
</body>

正在回答

2 回答

 for(int i = 0;i < favorites.length;i++)      i<后面多了个空格

0 回复 有任何疑惑可以回复我~

三月 17, 2019 10:02:59 上午 org.apache.catalina.core.StandardWrapperValve invoke
严重: Servlet.service() for servlet [jsp] in context with path [/MyJspProject] threw exception [java.lang.ClassNotFoundException: org.apache.jsp.request_jsp] with root cause
java.lang.ClassNotFoundException: org.apache.jsp.request_jsp


Stacktrace:] with root cause
org.apache.jasper.JasperException: Unable to compile class for JSP:

An error occurred at line: [17] in the jsp file: [/request.jsp]
Syntax error on token "Invalid Character", delete this token
14:     瀵嗙爜:<%=request.getParameter("password") %>
15:     鐖卞ソ:<%
16:         String[] favorites = request.getParameterValues("favorite");
17:         for(int i = 0;i <銆?favorites.length;i++){
18:             out.println(favorites[i]+"&nbsp;&nbsp;");
19:         }
20:     %>


我只要把这段代码替换成老师,就没有任何问题。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

同学们,谁能告诉我,我下面的代码怎么错了,执行不对

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信