How to - java source => browsing html

N

NDerTfr

I have a lot java source file in many package.

Is it somehow possible to convert this java source file in html so I can
browse this source?

For example:

A.java --would be A.html
.........
public String something (B b, ......) //where B is link to class B
.........

B.java --would be B.html
.............

I hope you understand my question!

Thanks.
 
M

Marco Schmidt

NDerTfr:
I have a lot java source file in many package.

Is it somehow possible to convert this java source file in html so I can
browse this source? [...]
I hope you understand my question!

javadoc lets you generate source HTML files with the -linksource
option. You can click on a name in the API docs and jump to the
correct position in the source code. But I'm not sure if you can make
javadoc generate clickable type names within the source itself, that's
probably in the docs.

Regards,
Marco
 
S

Sandip Chitale

NDerTfr said:
I have a lot java source file in many package.

Is it somehow possible to convert this java source file in html so I can
browse this source?

For example:

A.java --would be A.html
........
public String something (B b, ......) //where B is link to class B
........

B.java --would be B.html
............

I hope you understand my question!

Thanks.

http://www.xref-tech.com/J2HTML/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,743
Messages
2,569,478
Members
44,899
Latest member
RodneyMcAu

Latest Threads

Top