getServerInfo()
返回值:<% String info=application.getServerInfo(); out.println(info); %>筆者使用的是 Tomcat 伺服器,因此執行結果如下:
<body> <p>獲取伺服器相關資訊並測試紀錄檔輸出</p> <table> <tr> <td></td>伺服器資訊<%=application.getServerInfo()%></tr> <tr> <td></td>應用名稱<%=application.getServletContextName()%> </tr> <tr> <td></td>伺服器支援的servlet版本<%=application.getMajorVersion()%>. <%=application.getMinorVersion()%> </tr> <tr> <td></td>當前檔案的實際路徑<%=application.getRealPath("index.jsp")%> </tr> </table> </body>執行結果如下: