我的JSP在运行时给出错误404任何人都可以帮我找到我的错误在哪里?我创建了带有请求参数(背景颜色)的jsp页面并进行响应。我需要从java类调用方法。我还在WEB-INF文件夹中放置了我的JSP页面。这是我的代码。
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ page import="com.java.MyJsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form action="./myjsp.jsp">
<input type="radio" name="color" value="color1" > Yellow<br>
<input type="radio" name="color" value="color2"> White<br>
<input type="radio" name="color" value="color3"> Gray<br>
<input type="submit" value="go">
</form>
<% String colors[]=request.getParameterValues("color");
for(int i=0;i<colors.length;i++){
if(colors[i].equals("")||colors[i]==null){ %>
<body style="background-color:<%=com.java.Myjsp.myColor()
%>;">
<% }
if(colors[i].equals("yellow")){
out.println("<html> <style> body{background-color:yellow;} </style>
</html>");
}
if(colors[i].equals("white")){
out.println("<html> <style> body{background-color:white;} </style>
</html>");
}
if(colors[i].equals("gray")){
out.println("<html> <style> body{background-color:gray;} </style>
</html>");
}
}
%>
</body>
</html>
答案 0 :(得分:0)
访问此网址localhost:9342/MyProject/MyJSP.jsp
localhost:9342/MyProject/WEB-INF/MyJSP.jsp
也read link
在空指针异常上编辑:
如果我提到条件,请使用
<% String colors[]=request.getParameterValues("color");
if(colors !=null) {
for(int i=0;i<colors.length;i++){
if(colors[i].equals("")||colors[i]==null){ %>
<body style="background-color:<%=com.java.Myjsp.myColor()
%>;">
<% }
} // end of if statement this should be placed after loop block