【异常】JAVA常见异常
- 一、受检异常(Checked Exceptions)
- 1.1、ClassNotFoundException
- 1.2、IOException
- 1.3、SQLException
- 1.4、FileNotFoundException
- 二、非受检异常(Unchecked Exceptions)
- 2.1、NullPointerException
- 2.2、ArrayIndexOutOfBoundsException
- 2.3、ArithmeticException
- 2.4、IllegalArgumentException
- 2.5、ClassCastException
- 2.6、NumberFormatException
- 2.7、IllegalStateException
- 三、其他常见异常
- 3.1、IndexOutOfBoundsException
- 3.2、UnsupportedOperationException
在 Java 中,异常分为两大类:受检异常(Checked Exceptions)和非受检异常(Unchecked Exceptions)。受检异常需要在编译时处理,而非受检异常通常是在运行时抛出,并且不强制要求在编译时处理。下面列出了一些常见的异常类型:
一、受检异常(Checked Exceptions)
这些异常在编译时必须要处理,通常需要使用 try-catch 块或在方法签名中声明。
1.1、ClassNotFoundException
当应用程序试图通过字符串名称加载类时,如果在类路径中找不到对应的类,则抛出此异常。
try {Class.forName("com.example.NonExistentClass");
} catch (ClassNotFoundException e) {e.printStackTrace();
}
1.2、IOException
通常在输入输出操作失败或中断时抛出,比如文件操作、网络通信等。
try {FileReader file = new FileReader("nonexistentfile.txt");
} catch (IOException e) {e.printStackTrace();
}
1.3、SQLException
在数据库操作失败时抛出,例如查询、插入、更新等操作。
try {Connection con = DriverManager.getConnection("jdbc:mysql://localhost/test", "user", "password");Statement stmt = con.createStatement();stmt.executeQuery("SELECT * FROM nonexistent_table");
} catch (SQLException e) {e.printStackTrace();
}
1.4、FileNotFoundException
当试图打开一个不存在的文件时抛出。
try {FileInputStream file = new FileInputStream("nonexistentfile.txt");
} catch (FileNotFoundException e) {e.printStackTrace();
}
二、非受检异常(Unchecked Exceptions)
这些异常在编译时不强制要求处理,通常在运行时抛出。
2.1、NullPointerException
当应用程序试图访问 null 对象的成员时抛出。
String str = null;
System.out.println(str.length());
2.2、ArrayIndexOutOfBoundsException
当试图访问数组的非法索引时抛出。
int[] array = new int[5];
System.out.println(array[10]);
2.3、ArithmeticException
在算术运算中出现异常情况时抛出,例如除以零。
int result = 10 / 0;
2.4、IllegalArgumentException
当方法接收到非法参数时抛出。
public void setAge(int age) {if (age < 0) {throw new IllegalArgumentException("Age cannot be negative");}
}
2.5、ClassCastException
当试图将对象强制转换为不兼容的类型时抛出。
Object obj = new Integer(10);
String str = (String) obj;
2.6、NumberFormatException
当试图将字符串转换为数值类型时,如果字符串的格式不正确,则抛出此异常。
String number = "abc";
int num = Integer.parseInt(number);
2.7、IllegalStateException
当方法在不适当的时刻被调用时抛出。例如,当 Scanner 关闭后再调用其方法时。
Scanner scanner = new Scanner(System.in);
scanner.close();
scanner.nextLine();
三、其他常见异常
3.1、IndexOutOfBoundsException
当索引值超出范围时抛出,通常由 List 或数组等引起。
List<String> list = new ArrayList<>();
list.get(1);
3.2、UnsupportedOperationException
当不支持的方法被调用时抛出。
List<String> list = Arrays.asList("a", "b");
list.add("c");