try{ 
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); 
   } 
catch(ClassNotFoundException e){ 
out.print(e); 

try{
String spath="\\db\\xuanti.mdb";
String dbpath=application.getRealPath(spath); 
String url ="jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ="+dbpath;
后面的代码省略xuanti.mdb放在WebRoot\db\xuanti.mdb
总是说找不到数据库的路径 求教