testclassloader.java

来自「This program is testing on whether the c」· Java 代码 · 共 15 行

JAVA
15
字号
public class TestClassLoader{
	public static void main(String arg[]){
	/*
         * Loading the JDBC Driver
         */
        try{
            Class.forName("test.biomerieux.stagville.reportingDBTest.ResultsTableUDS");
        }catch(ClassNotFoundException e){

            System.out.println( "Class Cannot Found:"+e.getMessage());
            System.exit(1);
        }
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?