将外部互联网站点的超文本链接放入 javadoc 中
我希望我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
{@link}
和{@linkplain}
专门用于链接到其他 javadoc。要链接到普通网页,您只需使用 HTML 链接即可:
{@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:
将显示为
will be displayed as