|
In the C: drive, the problem persists.
BUT both solutions do not seem to work; for the second solution I moved the resource jar into the ext folder but it still could not be found when I ran:
java -jar D:\path\to\jar\myJar.jar
And when I added the bootstrap path, it also gave the same error:
java -Xbootclasspath/a:D:\path\to\jar\theirJar.jar -jar D:\path\to\jar\myJar.jar
java -Xbootclasspath/a:"D:\path\to\jar\theirJar.jar" -jar D:\path\to\jar\myJar.jar
|