将外部互联网站点的超文本链接放入 javadoc 中

发布于 2024-12-03 20:49:17 字数 291 浏览 2 评论 0原文

我希望我的 javadoc 引用我的 Intranet 上的开发手册。我想知道如何做到这一点:我尝试使用 see {@link http://json.org} 但这刚刚生成了 http://json.org 而不是超文本链接。假设我想指向 javadoc 中的某个 wiki 页面。我该怎么做?我只是想链接到外部网站。所以我想要像示例这样的超文本链接,它指向网站的完整 URL。

I want my javadoc to reference a dev manual that is on my intranet. I would like to know how to do this: I tried using see {@link http://json.org} but this just produced http://json.org and not a hypertext link. Let's say I wanted to point to some wiki page inside the javadoc. How can I do this? I am just trying to have link to external website. So I want something like Example as hypertext link and it points to a full URL to website.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空城旧梦 2024-12-10 20:49:17

{@link}{@linkplain} 专门用于链接到其他 javadoc。

要链接到普通网页,您只需使用 HTML 链接即可:

* @see <a href="http://json.org/">The JSON site</a>

{@link} and {@linkplain} are specifically used to link to other javadoc.

To link to a plain web page you can simply use an HTML link:

* @see <a href="http://json.org/">The JSON site</a>
明媚如初 2024-12-10 20:49:17
/**
* some text <a href="https://www.example1.com">some in text link</a>
* @see <a href="https://www.example2.com">some other link</a>
*/
public void someFunction() {}

将显示为

public void someFunction()

一些文字一些文字链接

另请参阅:
一些其他链接

/**
* some text <a href="https://www.example1.com">some in text link</a>
* @see <a href="https://www.example2.com">some other link</a>
*/
public void someFunction() {}

will be displayed as

public void someFunction()

some text some in text link

See also:
some other link

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文