我寫在我的servlet A HREF鏈接的PrintWriter。 但瀏覽器將其顯示爲無效鏈接。瀏覽器中的鏈接href無效?
這裏是我的代碼:
String path = request.getRequestURI();
path = path.substring(0, path.lastIndexOf('/'));
path = path + "/open-Account.html.html" ;
StringBuffer openAccountLink = new StringBuffer();
openAccountLink .append("<a href=").append("\"").append(path).append("\"");
openAccountLink .append(">").append("Create an account").append("</a>");
out.write("</br>");
out.print(openAccountLink .toString());
URL in the log:<a href="/content/pages/location/en_us/user/open-Account.html.html">
我的日誌顯示上述HREF鏈接,但瀏覽器的權利抱怨說,它是一個無效的link..how克服這個?
你肯定有兩個的.html如在地址 –
「.html.html」如何在瀏覽器抱怨嗎?唯一的問題是你有兩個'.html',但這應該也許我認爲很好。 – Sanchit