If you want to ignore everything after ".jsp" then you need:
String foo = "http://abcdef.defgh/klmno.jsp/abdcefg";
String bar = foo.replaceAll("\\.jsp.*", ".jsp");
That is, take ".jsp" (escape the period with \ otherwise it means "any character") and everything after ".jsp" (".*") and replace it with just ".jsp".
Or, if you want to only capture stuff that's prefixed by "href=" then you could use:
String foo = "href=\"http://abcdef.defgh/klmno.jsp/abdcefg\"";
String bar = foo.replaceAll("(href=.*\\.jsp)[^\"]*\"", "$1");
That is, capture everything that starts with "href=", up to ".jsp" (greedy match will ensure up to the final ".jsp"), and use it as a back reference ("$1"). Exclude everything after that last ".jsp" up to the final quote "[^\"]*\"".
.jspalways the end of the part you are interested in? – user647772 Aug 2 '12 at 12:35