I cannot reproduce this using Eclipse 3.2 and MyEclipse 5.0, here’s my page:
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<%
try
{
int i = Integer.parseInt("4");
}
catch(NumberFormatException e)
{
e.printStackTrace();
}
%>
<%
try
{
int i = Integer.parseInt("4");
}
catch(NumberFormatException e)
{
e.printStackTrace();
}
%>
</html>