我遇到了疯狂的问题。
下面是我的目录结构
- src
Sub - directory are
- com/abc/www MyJava.java (Contains the package com.abc.www)
- lib
It contains the jar files like sqljdbc4.jar
- bin
It contains the class file , that I had compiled the
package directory structure created automatically
- com/abc/www/MyJava.class
我使用下面的行来编译我的代码:
java -cp "lib\*" -d bin src\com\abc\www\MyJava.java
它编译成功。
好吧,现在当我尝试执行我的代码时: cd bin java com.abc.www.MyJava
不幸的是,它给了我以下错误:
java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver
at java.net.URLClassLoader$1.run (URLClassLoader.java:202)
....
相同的任何输入都会有所帮助。
谢谢 !!!!