Question: The Java SE program below uses class DatabaseUtils from ikmutils.jar: package com.ikm.test; import com.ikm.utils.DatabaseUtils; public class ClasspathTester { public static void main ( String [

The Java SE program below uses class DatabaseUtils from ikmutils.jar:
package com.ikm.test;
import com.ikm.utils.DatabaseUtils;
public class ClasspathTester {
public static void main(String[] args){
String connectionString = new DatabaseUtils().getCSVConnectionString();
System.out.println("Success:"+ connectionString);
}
}
If i kmutils.jar is in folder c:??i kmutils ??lib, then which of the following classpath definitions can be substituted for *************** in the command below to successfully execute the program?
java -classpath *************** com.ikm.test.ClasspathTester
.; c: \ikmutils\lib *
-;ikmutils.jar
.;c:\ikmutils\ikmutils.jar
 The Java SE program below uses class DatabaseUtils from ikmutils.jar: package

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!