search
HomeJavajavaTutorialHow to catch and handle java exceptions

How to catch and handle java exceptions

Aug 19, 2020 am 10:43 AM
javaabnormal

Java exception capture and processing methods: 1. throws keyword, the system automatically throws the captured exception information to the superior calling method; 2. The function of throw is to manually throw the instantiation object of the exception class ;3. RunException is a subclass of Exception, and it is up to the user to choose whether to process it.

How to catch and handle java exceptions

[Related learning recommendations: java basic tutorial]

Java exception catching and handling methods:

1. The use of exception handling

Since the finally block can be omitted, the exception handling format can be divided into three categories: try{}——catch { }, try{ }——catch{ }——finally{ }, try{ }——finally{ }.

 1 public class DealException
 2 {
 3     public static void main(String args[])
 4     {    
 5         try
 6         //要检查的程序语句
 7         {
 8             int a[] = new int[5];
 9             a[10] = 7;//出现异常
10         }
11         catch(ArrayIndexOutOfBoundsException ex)
12         //异常发生时的处理语句
13         {
14             System.out.println("超出数组范围!");
15         }
16         finally
17         //这个代码块一定会被执行
18         {
19             System.out.println("*****");
20         }
21         System.out.println("异常处理结束!");
22     }
23 }

It can be seen that two judgments must be made during the exception catching process. The first is whether an exception is generated in the try program block, and the second is whether the generated exception is consistent with the one you want to catch in the catch() brackets. The exception is the same.

So, what should you do if the exception that occurs is different from the exception you want to catch in catch()? In fact, we can follow a try statement with multiple exception handling catch statements to handle many different types of exceptions.

 1 public class DealException
 2 {
 3     public static void main(String args[])
 4     {    
 5         try
 6         //要检查的程序语句
 7         {
 8             int a[] = new int[5];
 9             a[0] = 3;
10             a[1] = 1;
11             //a[1] = 0;//除数为0异常
12             //a[10] = 7;//数组下标越界异常
13             int result = a[0]/a[1];
14             System.out.println(result);
15         }
16         catch(ArrayIndexOutOfBoundsException ex)
17         //异常发生时的处理语句
18         {
19             System.out.println("数组越界异常");
20             ex.printStackTrace();//显示异常的堆栈跟踪信息
21         }
22         catch(ArithmeticException ex)
23         {
24             System.out.println("算术运算异常");
25             ex.printStackTrace();
26         }
27         finally
28         //这个代码块一定会被执行
29         {
30             System.out.println("finally语句不论是否有异常都会被执行。");
31         }
32         System.out.println("异常处理结束!");
33     }
34 }

In the above example, ex.printStackTrace(); is the use of the exception class object ex, which outputs detailed exception stack trace information, including the type of exception, which package, which class, and which method the exception occurred in. and the line number where the exception occurred.

2. The throws keyword

The method declared by throws means that the method does not handle exceptions, but the system automatically throws the captured exception information to the superior calling method.

 1 public class throwsDemo
 2 {
 3     public static void main(String[] args) 
 4     {
 5         int[] a = new int[5];
 6         try
 7         {
 8             setZero(a,10);
 9         }
10         catch(ArrayIndexOutOfBoundsException ex)
11         {
12             System.out.println("数组越界错误!");
13             System.out.println("异常:"+ex);
14         }
15         System.out.println("main()方法结束。");
16     }
17     private static void setZero(int[] a,int index) throws ArrayIndexOutOfBoundsException
18     {
19         a[index] = 0;
20     }
21 }

The throws keyword throws an exception. "ArrayIndexOutOfBoundsException" indicates the type of exception that may exist in the setZero() method. Once an exception occurs in the method, the setZero() method does not handle it itself, but submits the exception to it. The superior caller main() method.

3. Throw keyword

The function of throw is to manually throw the instantiated object of the exception class.

 1 public class throwDemo
 2 {
 3     public static void main(String[] args) 
 4     {
 5         try
 6         {
 7             //抛出异常的实例化对象
 8             throw new ArrayIndexOutOfBoundsException("\n个性化异常信息:\n数组下标越界");
 9         }
10         catch(ArrayIndexOutOfBoundsException ex)
11         {
12             System.out.println(ex);
13         }
14     }
15 }

We can find that throw seems to be looking for trouble, causing runtime exceptions and customizing prompt information. In fact, throw is usually used in conjunction with throws, and what is thrown is an instance of the exception class that has been generated in the program.

ExceptionDemo

Output result:

setZero method starts:

setZero method ends.

Exception: java.lang.ArrayIndexOutOfBoundsException: 10

main() method ends!

4. RuntimeException class

The difference between Exception and RuntimeException:

Exception: It is mandatory for users to handle it;

RunException : is a subclass of Exception, and it is up to the user to choose whether to handle it.

How to catch and handle java exceptions

##                                                                                                                                                                           to                             ’   ‐ ‐ ‐ ‐ ‐ ‐ ‐ ‐ to 5. Custom exception class

The custom exception class inherits from the Exception class and can be used There are a lot of methods in the parent class, and you can also write your own methods to handle specific events. Java provides an inheritance method to run exception classes written by users.

 1 class MyException extends Exception
 2 {
 3     public MyException(String message)
 4     {
 5         super(message);
 6     }
 7 }
 8 public class DefinedException
 9 {
10     public static void main(String[] args) 
11     {
12         try
13         {
14             throw new MyException("\n自定义异常类!");
15         }
16         catch(MyException e)
17         {
18             System.out.println(e);
19         }
20     }
21 }

Related learning recommendations:

Programming video

The above is the detailed content of How to catch and handle java exceptions. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How to elegantly obtain entity class variable names to build database query conditions?How to elegantly obtain entity class variable names to build database query conditions?Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to use the Redis cache solution to efficiently realize the requirements of product ranking list?How to use the Redis cache solution to efficiently realize the requirements of product ranking list?Apr 19, 2025 pm 11:36 PM

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

How to safely convert Java objects to arrays?How to safely convert Java objects to arrays?Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

How do I convert names to numbers to implement sorting and maintain consistency in groups?How do I convert names to numbers to implement sorting and maintain consistency in groups?Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the default run configuration list of SpringBoot projects in Idea for team members to share?How to set the default run configuration list of SpringBoot projects in Idea for team members to share?Apr 19, 2025 pm 11:24 PM

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools