我正在尝试添加一个功能,用户可以在其中查找命令文档 - 它是一个基于命令行的程序,可以输入各种命令。
我认为最简单的方法是将文档存储在外部文件中,但我不确定我的最佳选择是什么。文本文件似乎有点草率,csv更像我的想法,但在文档中处理逗号也不理想。字典(如json)会很棒,但我不确定如何用Java读取它。我不能使用第三部分库。
答案 0 :(得分:0)
我认为您需要编写javadocs注释然后将其导出(如果需要)。 用户还可以在使用库时访问命令文档。
示例:
/**
* Returns an Image object that can then be painted on the screen.
* The url argument must specify an absolute {@link URL}. The name
* argument is a specifier that is relative to the url argument.
* <p>
* This method always returns immediately, whether or not the
* image exists. When this applet attempts to draw the image on
* the screen, the data will be loaded. The graphics primitives
* that draw the image will incrementally paint on the screen.
*
* @param url an absolute URL giving the base location of the image
* @param name the location of the image, relative to the url argument
* @return the image at the specified URL
* @see Image
*/
public Image getImage(URL url, String name) {
try {
return getImage(new URL(url, name));
} catch (MalformedURLException e) {
return null;
}
}