请问
我有个防没有登陆就访问网页的filter
在filter中 boolean exception = url.contains("index.jsp") ;要能够访问index.jsp
但是index.jsp的样式表CSS老不起作用 
在index.jsp中 
放入路径输出
File directory = new File("aa");//设定为当前文件夹
try{
    System.out.println(directory.getCanonicalPath());//获取标准的路径
    System.out.println(directory.getAbsolutePath());//获取绝对路径
}catch(Exception e){}
竟然发现网页路径输出
F:\Program Files\apache-tomcat-6.0.18\bin\aa
F:\Program Files\apache-tomcat-6.0.18\bin\aa
无奈了~~!
我的CSS位于F:\Program Files\apache-tomcat-6.0.18\webapps\testdemo\css\css.css
在index.jsp中引入CSS 该怎么写啊?