首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Exception >

malformed expression 解决方法!

2014-01-26 
JBuilderX中创建web模块, 三个页面,login.htmexecute.jsperror.jsp error.jsp源码: 1 2%@ page content

JBuilderX中创建web模块,
三个页面,login.htm;execute.jsp;error.jsp;
error.jsp源码:
1
2<%@ page contentType="text/html; charset=gb2312" isErrorPage="true"%>
3<%@ page import="java.sql.*"%>
4<%@ page import="java.sql.SQLException"%>
5<html>
6<head>
7<title>error</title>
8</head>
9<body bgcolor="#ffffff">
10<%
11  if(exception instanceof SQLException)
12out.println("发生了数据库操作异常,请和系统管理员联系")
13else out.println("发生了不可知的异常,请和系统管理员联系");
14%>
15</body>
16</html>

错误:
illegal character at line 11
malformed expression(第一行--空行)

------解决方法--------------------------------------------------------
没有分号。
10<%
11  if(exception instanceof SQLException)
12out.println("发生了数据库操作异常,请和系统管理员联系");
13else out.println("发生了不可知的异常,请和系统管理员联系");
14%>

        

热点排行