• 大小: 1.53KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java 类未发现异常(基础篇-实例155).zip

资源截图

代码片段和文件信息

package com.mingrisoft.exceptions;

public class ExceptionTest {
    public static void main(String[] args) {
        try {
            Class.forName(“com.mysql.jdbc.Driver“);// 加载MySQL驱动程序
        } catch (ClassNotFoundException e) {// 捕获异常
            e.printStackTrace();// 打印堆栈信息
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         232  2015-08-28 13:54  .classpath
     文件         379  2015-08-28 13:54  .project
     文件         722  2015-08-28 13:54  bin\com\mingrisoft\exceptions\ExceptionTest.class
     文件         329  2015-08-28 13:54  src\com\mingrisoft\exceptions\ExceptionTest.java

评论

共有 条评论