解决方法:在JSP页面上
1、可以使用${fn:substring(string, begin, end)}
返回参数string部分字符串, 从参数begin开始到参数end位置,包括end位置的字符
2、可以使用<% String.subString(0,N)%>的方式,这里String代表你要截取的字符串
fn:substringBefore 获取从开始到某个字符所在位置的子串 ${fn:substringBefore(字符串, "products")}
String u="http://localhost:8080/opencms/weifang/shangj/jiaju/a003/1F/005/products/201004/8.html";
System.out.println(u.substring(0, u.indexOf("product")));
a