This post originated from an RSS feed registered with Java Buzz
by Erik C. Thauvin.
Original Post: Java2Html and IntelliJ IDEA
Feed Title: Erik's Weblog
Feed URL: http://erik.thauvin.net/blog/feed.jsp?cat=Java
Feed Description: The Truth is Out There!
Latest Java Buzz Posts
Latest Java Buzz Posts by Erik C. Thauvin
Latest Posts From Erik's Weblog
Advertisement
[@486] Java2Html and IntelliJ IDEA
IDEA can export Java source code to HTML, which I find quite useless. I really like the way Java2Html works but there is no integration with IDEA.
You can easily setup an External Tool in IDEA using the Java2Html command line options.
The problem is that I also wanted to:
View the generated HTML code right away.
Discard the resulting HTML file when done. I usually only need to copy/paste elsewhere.
I created a simple batch file to help me accomplish my goal...
java2html4IDEA.bat
@echo off
setlocal
set TMPFILE="%WINDIR%\temp\%~n1%~x1.html"
java -jar java2html.jar -srcfile %1 -targetfile %TMPFILE%
notepad %TMPFILE%
endlocal
@echo on
What does it do?
Passes the first argument (the path to the Java source file) to Java2Html.
Instructs Java2Html to save the resulting HTML file directly to the Windows temporary files directory.
Automatically opens the HTML file with Notepad.
To use it, simply place it in the same directory as the Java2Html jar, in my case C:\java2html .
The only thing left to do was to create the External Tool entry in IDEA, as follows:
Tags: java , intellij idea , java2html
Read: Java2Html and IntelliJ IDEA