Home > Java > javaTutorial > body text

Java example - Get exception stack information

黄舟
Release: 2017-02-04 10:11:07
Original
1671 people have browsed it

The following example demonstrates using the printStack() method of the exception class to obtain stack information:

/*
 author by w3cschool.cc
 Main.java
 */public class Main{
   public static void main (String args[]){
      int array[]={20,20,40};
      int num1=15,num2=10;
      int result=10;
      try{
         result = num1/num2;
         System.out.println("The result is" +result);
         for(int i =5;i *gt;=0; i--) {
            System.out.println("The value of array is" 
            +array[i]);
         }
      }
      catch (Exception e) {
         e.printStackTrace();
      }
   }}
Copy after login

The output result of running the above code is:

The result is1
java.lang.ArrayIndexOutOfBoundsException: 5
        at testapp.Main.main(Main.java:28)
Copy after login

The above is Java Example - Obtain the content of the exception stack information. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!