oxyt
oxyt

Reputation: 1854

Link to text file (resource) in Javadoc

I did my seach but couldn't find the right answer... How can I use link to a resource text file in Javadoc. {@link easywords.txt} doesn't work. <a href="D:\NetBeans\HMan\easy.txt">Easy words</a> doesn't work neither.

Upvotes: 3

Views: 10699

Answers (1)

Grim
Grim

Reputation: 1986

Try <a href="file:///D:/NetBeans/HMan/easy.txt">Easy words</a> instead.

A Link should be a URL.

The browser may think D would be protocol to handle requests.

For literature: http://en.wikipedia.org/wiki/File_URI_scheme

Upvotes: 5

Related Questions