gpt4 book ai didi

java - 如何从 JSP 链接到外部 URL

转载 作者:行者123 更新时间:2023-12-01 07:49:30 25 4
gpt4 key购买 nike

我试图从 JSP 页面创建到外部资源的链接,但它总是添加 servlet 的名称作为前缀。这是我的页面:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

<a href="www.google.com">Link</a>

</body>
</html>

当我转到 http://localhost:8080/Example/example.jsp 然后按链接时,我会看到以下 URL http://localhost:8080/Example/www.google.com 而不是 www.google.com

请帮我解决一下。

最佳答案

您需要指定一个协议(protocol):

<a href ="http://www.google.com">link</a>

关于java - 如何从 JSP 链接到外部 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41091746/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com