/** * 保存するPDFファイル名を返します。 * * @return PDFファイル名 * @throws Exception */ protected String createPDFFileName() throws Exception { Calendar cal = Calendar.getInstance(); return VRDateParser.format(cal.getTime(), "yyyyMMddHHmmss") + ".pdf"; }
/** * 和暦年を返します。 * * @param x 日付 * @throws Exception 処理例外 * @return 和暦年 */ public static int getEraYear(Date x) throws Exception { return Integer.parseInt(VRDateParser.format(x, "e")); }