OSDN Git Service

1.00.00-beta
[jaxcel/jaxcel.git] / Jaxcel / src / org / hanei / jaxcel / util / MakeReportTool.java
index c6c9323..58afbdc 100644 (file)
@@ -28,7 +28,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
- * Excel帳票å\87ºå\8a\9bã\82³ã\83³ã\82½ã\83¼ã\83«ツールクラス
+ * Excel帳票å\87ºå\8a\9bã\82³ã\83\9eã\83³ã\83\89ã\83©ã\82¤ã\83³ツールクラス
  * 
  * @version 1.00.00
  * @author Noboru Saito
@@ -41,8 +41,8 @@ public class MakeReportTool {
         * ExcelテンプレートファイルにJSONファイルのデータを挿入することでExcel帳票を生成、Excel帳票ファイルを出力する。<br>
         * 
         * @param args arg1: Excelテンプレートファイルパス<br>
-        * arg2: パラメータJSONファイルパス<br>
-        * arg3: Excel帳票出力ファイルパス
+        *       arg2: パラメータJSONファイルパス<br>
+        *       arg3: Excel帳票出力ファイルパス
         * 
         * @throws Exception 
         */
@@ -62,11 +62,9 @@ public class MakeReportTool {
                ReportMaker maker = new ReportMaker();
                log.info("====== makeReport Start ======");
                maker.makeReport(new File(args[0]), parameter, new File(args[2]));
-               System.out.println("--------------------------------------");
                System.out.println("output complate: " + args[2]);
-               System.out.println("see debug log  : ../log/jaxcel.log");
-               System.out.println("--------------------------------------");
                log.info("====== makeReport End ======");
+               System.exit(0);
        }
 
 }