JSP Request.getServerName()方法:获取服务器的名字

该方法用于获取服务器的名字。

语法:

getServerName()

返回值:服务器的名称。

示例

在页面中显示服务器端的名字,关键代码如下:

<%
  String serName = request.getServerName();
  out.println("服务器端的名字为:"+serName);
%>

该示例将在 JSP 页面输出“服务器端的名字为:localhost”。

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/22763.html

(0)
上一篇 2021年7月20日
下一篇 2021年7月20日

相关推荐

发表回复

登录后才能评论