Java 如何显示手册
我正在为我的一个应用程序制作一本手册。我想知道使用 Java 显示手册的最佳方式。
我的想法是创建类似于 Adobe Reader 显示 PDF 文件的方式。左边是文档的“地图”,右边是“章节”的内容。
我将如何复制这个?
I am making a manual for one of my applications. I was wondering the best way to display a manual using Java.
My idea is to create something like how Adobe Reader shows PDF files. The "map" of the document is on the left and the contents of the "chapter" are on the right.
How would I go about replicating this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个 PDF 文件,然后使用 打开它桌面类。用户首选的 PDF 查看器将打开该手册。
或者,您可以在公开网站上以 HTML 格式托管该手册,并使用相同的类浏览到适当的 URI(这将具有通过链接到适当的 URL 获得更多上下文帮助的优点) 。
You could just create a PDF file, and opening it with the Desktop class. The user's preferred PDF viewer would open the manual.
Or you could host the manual in HTML format on a publicly available web site, and use the same class to browse to the appropriate URI (which would have the advantage of being able to have a more contextual help, by linking to an appropriate URL).