我正在寻找一种方法,使用glassFish Server将我的applet与来自浏览器的数据库连接起来。当我用AppletViewer运行它时,它正在工作,但当我尝试在浏览器中打开它时,它给了我一个例外:找不到合适的驱动程序。
这是我的方法:
public Connection getConnection(){
try {
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
} catch (Exception ex) {
}
try {
conn=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","stage","stage");
System.out.println("connect");
} catch (SQLException ex) {
System.out.println(ex.getMessage());
}
return conn;
}
这是HTML页面
<jsp:plugin
type="applet"
codebase="."
code="classes/MapApplet.class"
archive="applet.jar,ojdbc6.jar"
width="1350" height="747">
</jsp:plugin>