Java2HTML

は、Javaのソースコードを色分けされブラウズ可能なHTMLページに変換するためのツールであり、その手順は非常に単純です。

それを変換するステップ

{空} 1)Java2HTMLをダウンロードする –

http://www.java2html.com/download.html

{空} 2)解凍します(例: “D:\ Java2HTML”

3) “j2h.bat”ファイルを編集し、CLASSPATH変数を変更します。

正しいj2h.jarライブラリを指していることを確認してください。

@echo off
REM Change this Script, to suit your needs

REM The next few line combines the command line args into one
set __j2h__parameter=
:GetParameter
if "%1" == "" goto end
set __j2h__parameter=%__j2h__parameter% "%1"
shift
goto GetParameter
:end

REM runs Java2HTML
set MBACKUP=%CLASSPATH%
set CLASSPATH=D:\Java2HTML\j2h.jar;%CLASSPATH%
java j2h %__j2h__parameter%
set CLASSPATH=%MBACKUP%

{空} 4)Windows環境変数に “j2h”を設定します。 (グローバルにコマンドにアクセスする必要がある場合)

5)次のコマンドを発行します

C:\>j2h -js D:\Java2HTML\source -d D:\Java2HTML\output

__D:\ Java2HTML \ sourceはD:\ Java2HTML \ outputを生成するHTML出力フォルダであるJavaソースコードです。

結果

C:\>j2h -js D:\Java2HTML\source -d D:\Java2HTML\output
Java2HTML Version 1.5
Copyright (c) 1999-2007, Enterprise Solution Consultants Limited, All Rights Reserved.
New Versions available from http://www.java2html.com
(type j2h with no arguments to get help)
Created D:\Java2HTML\output\stylesheet.css
Created D:\Java2HTML\output\front.html
Created: D:\Java2HTML\output\org\testng\internal\Invoker.java.html
Created: D:\Java2HTML\output\org\testng\ClassMethodMap.java.html
Created: D:\Java2HTML\output\org\testng\v6\TestPlan.java.html
Created: D:\Java2HTML\output\org\testng\annotations\Test.java.html
Created: D:\Java2HTML\output\org\testng\internal\annotations\JDK14TagFactory.java.html
Created: D:\Java2HTML\output\org\testng\annotations\AfterMethod.java.html
Created: D:\Java2HTML\output\org\testng\internal\TestMethodWorker.java.html
Created: D:\Java2HTML\output\org\testng\JUnitConverter.java.html
Created: D:\Java2HTML\output\org\testng\internal\BaseClassFinder.java.html
Created: D:\Java2HTML\output\org\testng\internal\AnnotationTestConverter.java.html
Created: D:\Java2HTML\output\org\testng\junit\JUnitDirectoryConverter.java.html
Created: D:\Java2HTML\output\org\testng\JUnitConverterTask.java.html
Created: D:\Java2HTML\output\org\testng\remote\strprotocol\GenericMessage.java.html
Created: D:\Java2HTML\output\org\testng\xml\ClassSuite.java.html
Created: D:\Java2HTML\output\org\testng\internal\thread\ThreadTimeoutException.java.html
Created: D:\Java2HTML\output\org\testng\internal\BaseTestMethod.java.html
Created: D:\Java2HTML\output\org\testng\annotations\TestInstance.java.html


html


java

リンク://タグ/ソースコード/[ソースコード]