当前位置:主页 > java教程 > java异常处理

java异常处理教程及实例总结

发布:2018-10-22 16:56:10 19


为找教程的网友们整理了相关的编程文章,网友王秀曼根据主题投稿了本篇教程内容,涉及到java、异常处理、java异常处理相关内容,已被730网友关注,涉猎到的知识点内容可以在下方电子书获得。

java异常处理

Java异常处理实例教程

1、什么是异常?
首先,让我们来看看下图的例子:
在这个例子中,存在的错误码由除以0的结果。由于除以0而导致异常: ArithmeticException
HelloException.java

package com.yiibai.tutorial.exception;

public class HelloException {

  public static void main(String[] args) {

    System.out.println("Three");

    // This division no problem.
    int value = 10 / 2;

    System.out.println("Two");

    // This division no problem.
    value = 10 / 1;

    System.out.println("One");
    
    // This division has problem, divided by 0.
    // An error has occurred here.
    value = 10 / 0;

    // And the following code will not be executed.
    System.out.println("Let's go!");

  }

}

运行这个例子,得到的结果是:

可以看到控制台屏幕上的通知。错误通知是很清楚的,包括代码行的信息。
让我们通过下图中的流程看看下面的程序:

  • 程序从(1),(2)至(5)步骤正常运行。
  • 在步骤(6)程序除以0。
  • 程序跳转出 main 方法后,而(7)代码行还没有被执行。

我们将修改上述实施例的代码。

HelloCatchException.java

package com.yiibai.tutorial.exception;

public class HelloCatchException {

  public static void main(String[] args) {

    System.out.println("Three");

    // This division no problem.
    int value = 10 / 2;

    System.out.println("Two");

    // This division no problem.
    value = 10 / 1;

    System.out.println("One");

    try {
      // This division has problem, divided by 0.
      // An error has occurred here.      
      value = 10 / 0;

      // And the following code will not be executed.
      System.out.println("Value =" + value);

    } catch (ArithmeticException e) {

      // The code in the catch block will be executed
      System.out.println("Error: " + e.getMessage());

      // The code in the catch block will be executed
      System.out.println("Ignore...");

    }

    // This code is executed
    System.out.println("Let's go!");

  }

}

运行示例结果:

Three

Two

One

Error: / by zero

Ignore...

Let's go!

我们将按以下实例图像的流程来解释下面的程序。

  • 步骤(1)至(5)是完全正常的。
  • 异常发生在步骤(6),除以0出现了问题。
  • 它立即跳到catch块执行命令,步骤(7)被跳过。
  • 步骤(8),(9)被执行。
  • 步骤(10)被执行。

2、 异常层次结构
这是Java异常的分层图的模型。

最高的类是:Throwable

两个直接子类是 Error 和 Exception。

在异常转移有一个RuntimeException子类,包括Java中的编译时未检查异常。检查并取消检查在编译时,在下一部分的实施示例中说明。

注意:您的类应该从两个分支:Error或Exception继承,而不是直接从Throwable继承。

当一个动态链接失败,或在虚拟机的一些其他的“硬”故障发生时,虚拟机引发这个错误。典型的Java程序不捕获错误,所以Java程序都不会抛出任何错误。大多数程序抛出并捕获从Exception类派生的对象。异常指示出现了一个问题,但是这些问题并不是严重系统性问题。你写的大多数程序将会抛出和捕获异常。

Exception类在Java包定义了许多子类。这些子类指明不同类型的可能会发生异常。 例如,NegativeArraySizeException表明程序试图创建一个大小为负的数组。

一个导演的子类在Java语言中的特殊含义: RuntimeException类表示Java虚拟机中发生(在运行期间)的异常。运行时异常的一个例子是NullYiibaierException异常,其中,当一种方法试图通过一个空引用来访问对象的成员时就会引发。 NullYiibaierException 可以在任何地方出现某个程序试图取消引用一个对象的引用。经常检查异常捕获的好处远远超过它的成本。

由于运行时异常是无所不在的,在试图捕获或指定所有的时间是徒劳的作法(不可读和不可维护的代码), 编译器允许运行时异常去未捕获和指定。
Java包定义几个RuntimeException类。您可以捕获这些异常,就像其他异常。但是并不需要一种方法来指定它抛出运行时异常。此外可以创建自己的RuntimeException子类。 运行时异常 - 下面讨论包含何时以及如何使用运行时异常进行了深入探讨。 3、使用try-catch处理异常

编写从Exception 继承的类。

AgeException.java

package com.yiibai.tutorial.exception.basic;

public class AgeException extends Exception {

  public AgeException(String message) {
    super(message);
  }

}
TooYoungException.java
package com.yiibai.tutorial.exception.basic;

public class TooYoungException extends AgeException {

 public TooYoungException(String message) {
   super(message);
 }

}

TooOldException.java

package com.yiibai.tutorial.exception.basic;

public class TooOldException extends AgeException {

 public TooOldException(String message) {
   super(message);
 }

}

以及AgeUtils类检查年龄的检查静态方法。
AgeUtils.java

package com.yiibai.tutorial.exception.basic;

public class AgeUtils {

 
  // This method checks the age.
  // If age is less than 18, the method will throw an exception TooYoungException
  // If age greater than 40, the method will throw an exception TooOldException
  public static void checkAge(int age) throws TooYoungException,
      TooOldException {
    if (age < 18) {

      // If age is less than 18, an exception will be thrown
      // This method ends here.
      throw new TooYoungException("Age " + age + " too young");
    } else if (age > 40) {

      // If age greater than 40, an exception will be thrown.
      // This method ends here.
      throw new TooOldException("Age " + age + " too old");
    }

    // If age is between 18-40.
    // This code will be execute.
    System.out.println("Age " + age + " OK!");
  }
}

检查异常和未经检查的异常:
AgeException是Exception,TooOldException的子类和TooYoungException2是 AgeException直接子类,所以它们是“Checked Exception”
在AgeUtils.checkAge(int)方法已经抛出异常,需要通过关键字“throws”,列出它们的方法声明。或者可以声明抛出更多的级别。
在使用 AgeUtils.checkAge(int) 位置也必须进行处理,以捕获异常,或继续抛出去。

"Checked exception" 是由 "Java Compiler"来检查。

有两个选择:

TryCatchDemo1.java

package com.yiibai.tutorial.exception.basic;

public class TryCatchDemo1 {

  public static void main(String[] args) {


    System.out.println("Start Recruiting ...");
    // Check age
    System.out.println("Check your Age");
    int age = 50;

    try {

      AgeUtils.checkAge(age);

      System.out.println("You pass!");

    } catch (TooYoungException e) {

      // Do something here ..
      System.out.println("You are too young, not pass!");
      System.out.println(e.getMessage());

    } catch (TooOldException e) {

      // Do something here ..
      System.out.println("You are too old, not pass!");
      System.out.println(e.getMessage());

    }

  }
}

在下面的例子中,我们将通过父类捕获异常(超Exception类)。
TryCatchDemo2.java

package com.yiibai.tutorial.exception.basic;

public class TryCatchDemo2 {

  public static void main(String[] args) {

    System.out.println("Start Recruiting ...");
    // Check age
    System.out.println("Check your Age");
    int age = 15;

    try {

      // Here can throw TooOldException or TooYoungException
      AgeUtils.checkAge(age);

      System.out.println("You pass!");

    } catch (AgeException e) {
      
      // If an exception occurs, type of AgeException
      // This catch block will be execute
      System.out.println("Your age invalid, you not pass");
      System.out.println(e.getMessage());

    }
  }
}

也可以组不同的异常在块中来处理,如果它们对逻辑程序处理是相同的方式。
TryCatchDemo3.java

package com.yiibai.tutorial.exception.basic;

public class TryCatchDemo3 {

  public static void main(String[] args) {

    System.out.println("Start Recruiting ...");
    // Check age
    System.out.println("Check your Age");
    int age = 15;

    try {

      // Here can throw TooOldException or TooYoungException
      AgeUtils.checkAge(age);

      System.out.println("You pass!");

    } catch (TooYoungException | TooOldException e) {
      // Catch multi exceptions in one block.

      System.out.println("Your age invalid, you not pass");
      System.out.println(e.getMessage());

    }
  }

}

4、 try-catch-finally
我们已习惯于通过 try-catch 块捕获错误。Try-catch-finally 来完全处理异常。

try {

  // Do something here

} catch (Exception1 e) {

  // Do something here

} catch (Exception2 e) {

  // Do something here

} finally {

  // Finally block is always executed
  // Do something here

}

TryCatchFinallyDemo.java

package com.yiibai.tutorial.exception.basic;

public class TryCatchFinallyDemo {

  public static void main(String[] args) {

    String text = "001234A2";

    int value = toInteger(text);

    System.out.println("Value= " + value);

  }

  public static int toInteger(String text) {
    try {

      System.out.println("Begin parse text: " + text);

      // An Exception can throw here (NumberFormatException).
      int value = Integer.parseInt(text);

      return value;

    } catch (NumberFormatException e) {

      
      // In the case of 'text' is not a number.
      // This catch block will be executed.      
      System.out.println("Number format exception " + e.getMessage());

      // Returns 0 if NumberFormatException occurs
      return 0;

    } finally {

      System.out.println("End parse text: " + text);

    }
  }

}

这是程序的流程。 finally块无论什么情况下总会被执行。

5、 环绕异常

  • 我们需要一些类参与到这个例子:
  • Person: 模拟一个受试者招募到公司的信息:姓名,年龄,性别。
  • GenderException: 性别异常。
  • ValidateException: 异常评估求职者。
  • ValidateUtils: 静态方法类综合评价面试者。
  • 如果男性年龄在18-40之间的被认为是有效的。

Person.java

package com.yiibai.tutorial.exception.wrap;

public class Person {

  public static final String MALE = "male";
  public static final String FEMALE = "female";

  private String name;
  private String gender;
  private int age;

  public Person(String name, String gender, int age) {
    this.name = name;
    this.gender = gender;
    this.age = age;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getGender() {
    return gender;
  }

  public void setGender(String gender) {
    this.gender = gender;
  }

  public int getAge() {
    return age;
  }

  public void setAge(int age) {
    this.age = age;
  }
}

GenderException.java

package com.yiibai.tutorial.exception.wrap;

// Gender Exception.
public class GenderException extends Exception {

   public GenderException(String message) {
     super(message);
   }
}

ValidateException 类包有其他异常。
ValidateException.java

package com.yiibai.tutorial.exception.wrap;

public class ValidateException extends Exception {
  
  // Wrap an Exception
  public ValidateException(Exception e) {
    super(e);
  }

}

ValidateUtils.java

package com.yiibai.tutorial.exception.wrap;

import com.yiibai.tutorial.exception.basic.AgeUtils;

public class ValidateUtils {

  public static void checkPerson(Person person) throws ValidateException {
    try {

      // Check age.
      // Valid if between 18-40
      // This method can throw TooOldException, TooYoungException.    
      AgeUtils.checkAge(person.getAge());

    } catch (Exception e) {
      
      // If not valid
      // Wrap this exception by ValidateException, and throw
      throw new ValidateException(e);

    }

    // If that person is Female, ie invalid.
    if (person.getGender().equals(Person.FEMALE)) {

      GenderException e = new GenderException("Do not accept women");
      throw new ValidateException(e);

    }
  }

}

WrapperExceptionDemo.java

package com.yiibai.tutorial.exception.wrap;

public class WrapperExceptionDemo {

  public static void main(String[] args) {
    
    // One participant recruitment.
    Person person = new Person("Marry", Person.FEMALE, 20);

    try {

      // Exceptions may occur here.
      ValidateUtils.checkPerson(person);

    } catch (ValidateException wrap) {

      // Get the real cause.
      // May be TooYoungException, TooOldException, GenderException
      Exception cause = (Exception) wrap.getCause();

      if (cause != null) {
        System.out.println("Not pass, cause: " + cause.getMessage());
      } else {
        System.out.println(wrap.getMessage());
      }

    }
  }

}

6、RuntimeException和子类 RuntimeException类及其子类都是“未检查的例外”。它不是由Java编译器在编译时进行检查。在某些情况下,你可以从这个分支继承编写自己的异常。

下面是属于RuntimeException分支一些类(当然,这还不是全部)。
一些处理这种类型异常的例子:

6.1- NullYiibaierException
这是最常见的异常,通常会导致错误在程序中。异常被抛出,当你调用方法或访问一个空对象的字段。
NullYiibaierExceptionDemo.java

package com.yiibai.tutorial.exception.runtime;

public class NullYiibaierExceptionDemo {

  // For example, here is a method that can return null string.
  public static String getString() {
    if (1 == 2) {
      return "1==2 !!";
    }
    return null;
  }

  public static void main(String[] args) {

    // This is an object that references not null.
    String text1 = "Hello exception";

    // Call the method retrieves the string length.
    int length = text1.length();

    System.out.println("Length text1 = " + length);

    // This is an object that references null.
    String text2 = getString();
    
    // Call the method retrieves the string length.
    // NullYiibaierException will occur here.
    // It is an exception occurs at runtime (type of RuntimeException)
    // Javac compiler does not force you to use a try-catch block to handle it
    length = text2.length();

    System.out.println("Finish!");
  }

}

运行示例的结果:

在现实中,像处理其他异常时,可以使用 try-catch 来捕获并处理这个异常。 然而,这是机械的,通常情况下,我们应该检查,以确保在使用它之前,对象不为空值。
您可以更正上面的代码,使其类似于下面的以避免空指针异常:

// This is a null object.
String text2 = getString();

// Check to make sure 'Text2' are not null.
// Instead of using try-catch.
if (text2 != null) {
 length = text2.length();
}

6.2- ArrayIndexOfBoundException
当您试图访问一个无效的索引的数组元素就会发生此异常。例如,一个数组有10个元素可以访问,但您访问的是索引为20的元素。
ArrayIndexOfBoundsExceptionDemo.java

package com.yiibai.tutorial.exception.runtime;

public class ArrayIndexOfBoundsExceptionDemo {

  public static void main(String[] args) {

    String[] strs = new String[] { "One", "Two", "Three" };

    // Access to the element has index 0.
    String str1 = strs[0];

    System.out.println("String at 0 = " + str1);

    
    // Access to the element has index 5.
    // ArrayIndexOfBoundsException occur here.
    String str2 = strs[5];

    System.out.println("String at 5 = " + str2);

  }

}

为了避免 ArrayIndexOfBoundsException,我们更多的应该是检查数组而不是使用try-catch。

if (strs.length > 5) {
  String str2 = strs[5];
  System.out.println("String at 5 = " + str2);
} else {
  System.out.println("No elements with index 5");
}

以上就是本文的全部内容,希望对大家的学习有所帮助。

Java学习笔记之异常处理

一.异常的分类

1.由Java虚拟机抛出的异常(Error):程序无法处理的问题,用户不用去进行处理(虚拟机错误丶内存溢出错误丶线程死锁)

2.Exception异常:程序本身可以进行处理的异常

1).非检查异常(Unchecked Exception):编译器不需要强制处理的异常(空指针异常丶数组下标越界异常丶算数异常丶类型转换异常)

2).检查异常(checked Exception):编译器需要强制处理的异常(IOException丶SQLException) 

二.异常处理的两种方法

1.通过try丶catch和finally关键字在当前位置进行异常处理

public static void main(String[] a){
 int sum = 0;
 while(true){
  try {  //以两数相除除数不能为0进行举例
   System.out.println("请依次输入两个数值进行除法操作:");
   Scanner scanner = new Scanner(System.in);
   int one =scanner.nextInt();
   int two =scanner.nextInt();
   sum = one/two;
   System.out.println("最终结果为:"+sum);
  } catch (Exception e) {    //用catch将错误进行捕捉,这里可以使用多重catch,对于不同的错误进行捕捉,但最后的catch建议为Exception。
   // TODO Auto-generated catch block //显示错误堆栈信息
   e.printStackTrace();                          
  }finally{            

 System.out.print("无论有没有错误我都会执行");          }
 }
 }
}

输出:

2.通过try丶catch丶finally丶throw和throws抛出异常给函数调用者进行处理

public class Try {
 public static void main(String[] a){
  try{
   Function();  //在函数调用者处对异常进行处理
  }catch(Exception e)
  {
   e.printStackTrace();
  } 
 }
 static void Function() throws Exception{  //通过throws将异常进行抛出
  
  System.out.println("请输入一个数值进行判断:");
  Scanner scanner = new Scanner(System.in);
  int one =scanner.nextInt();
  if(one<100)
  {
   throw new Exception(); //若输入的数值小于100则抛出异常
  }
 } 
}

输出:

3.自定义异常进行处理

class MyException extends Exception{  //自定义异常,通过super方法传递异常信息给父级
 public MyException(){
 super("这是我自定义的异常");
 }
}
 
public class Try {
 public static void main(String[] a){
  try{
   Function();
  }catch(MyException e)
  {
   e.printStackTrace();
  } 
 }
 static void Function() throws MyException{
  
  System.out.println("请输入一个数值进行判断:");
  Scanner scanner = new Scanner(System.in);
  int one =scanner.nextInt();
  if(one<100)
  {
   throw new MyException(); //将自定义异常进行抛出  
  }
 } 
}

输出:

三.异常链

有的时候我们会在处理一个异常的时候抛出一个新的异常,也就是异常的嵌套,但是最后我们得到的异常信息却只有一个。

示例:

public class Try {
 public static void main(String[] a){
  try{
   Function1();
  }catch(Exception e)
  {
   e.printStackTrace();
  } 
 }
 static void Function1() throws Exception{
  try{
   Function2();
  }catch(Exception e){
   throw new Exception();
  }
 } 
 static void Function2() throws Exception{
  try{
   Function3();
  }catch(Exception e){
   throw new Exception();
  }
 } 
 static void Function3() throws Exception{
   throw new Exception();
 } 
}

输入结果:

这样的话显示出的异常就只有一个了,那我们如果想让这条异常链中的所有异常信息全部输出该怎么办呢?方法很简单,我们在抛出异常的时候将异常对象也当作参数进行抛出就行了。

示例:

public class Try {
 public static void main(String[] a){
  try{
   Function1();
  }catch(Exception e)
  {
   e.printStackTrace();
  } 
 }
 static void Function1() throws Exception{
  try{
   Function2();
  }catch(Exception e){
   throw new Exception("异常2",e);
  }
 } 
 static void Function2() throws Exception{
  try{
   Function3();
  }catch(Exception e){
   throw new Exception("异常2",e);
  }
 } 
 static void Function3() throws Exception{
   throw new Exception("异常3");
 } 
}

运行结果:

到此,我们Java中的异常便是描述完了。


参考资料

相关文章

  • Java微服务分布式调度Elastic-job环境搭建及配置

    发布:2023-04-08

    Elastic-Job在配置中提供了JobEventConfiguration,支持数据库方式配置,会在数据库中自动创建JOB_EXECUTION_LOG和JOB_STATUS_TRACE_LOG两张表以及若干索引,来记录作业的相关信息


  • Java线程同步的四种方式详解

    发布:2023-03-28

    这篇文章主要介绍了Java线程同步的四种方式详解,需要的朋友可以参考下


  • 关于java遍历机制性能的比较示例代码

    发布:2020-02-27

    这篇文章主要给大家介绍了关于java遍历机制性能比较的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用java具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧


  • 解析Java线程池创建过程

    发布:2020-03-14

    那么有没有一种办法使得线程可以复用,就是执行完一个任务,并不被销毁,而是可以继续执行其他的任务?在Java中可以通过线程池来达到这样的效果。下面我们来详细了解一下吧


  • Python实现JavaBeans流程详解

    发布:2023-03-05

    这篇文章主要介绍了Python实现JavaBeans流程,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧


  • java异步编程之一文看完其异步函数表

    发布:2023-04-24

    这篇文章主要为大家介绍了java异步编程之一文看完其异步函数表示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪


  • Javascript迭代、递推、穷举、递归常用算法分享

    发布:2020-03-21

    今天小编就为大家分享一篇关于Javascript迭代、递推、穷举、递归常用算法实例讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧


  • 详解java 中Spring jsonp 跨域请求的实例

    详解java 中Spring jsonp 跨域请求的实例

    发布:2022-10-20

    为网友们分享了关于java的教程,这篇文章主要介绍了详解java 中Spring jsonp 跨域请求的实例的相关资料,jsonp 可用于解决主流浏览器的跨域数据访问的问题,需要的朋友可以参考下


网友讨论