Home Jsp Simple-jsp-example Try catch in JSP



Try catch in JSP
Posted on: March 12, 2008 at 12:00 AM
In try block we write those code which can throw exception while code execution and when the exception is thrown it is caught inside the catch block. The try catch block in jsp just work as try catch block in the java.

Try catch in JSP

        

In try block we write those code which can throw exception while code execution and when the exception is thrown it is caught inside the catch block. The try catch block in jsp just work as try catch block in the java. 

 

The code of the program is given below:

 

 

 

<HTML>
    <HEAD>
        <TITLE> Use of Try catch in jsp</TITLE>
    </HEAD>
	<BODY>
	<table align="center" bgcolor="#E1E1FF" border="1">
        <H1>Use of Try catch in jsp</H1>
		
        <%
		 try{
            int a = 10;
			int b = 10;
            b = a / 0;
			}
        catch(Exception e){
            out.println("The Error is: " + e);
		}
        %>
		</table>
    </BODY>
</HTML>

 

Output of the program:

 

Download this example.

Related Tags for Try catch in JSP:
javacexceptionjspideioexeclockidblockwriteexerowjsworkwhileexecutioneilthrowitcanceinastrsidsideoscaosjcatchlochrcatcutwhenwhichtrysxespatkisexceptandcodcodevautissrithavstndodeono


More Tutorials from this section

Ask Questions?    Discuss: Try catch in JSP   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.