表題の通りです。
打刻アプリの作成で、過去の出勤状況をExcelフォーマットに書き入れてクライアント側へ出力するというプログラムを作成しております。
皆様のお力添えもあり、何とか出力することはできるようになりました。
ファイル名だけでも出したいので固定で「勤務実績_たろう君.xls」と記入したのですが、「たろう君」のところを動的に入力するような記述も実装したいです。
ログインユーザー名によって「勤務実績_〇〇.xls」の〇〇の記述が変わるような感じです。
以上、よろしくお願い申し上げます。
環境
・Java8
・Apache Tomcat8
・Spring Framework
・Microsoft Edge
・Google Chrome
ソースコード
java
1try { 2 // monthを取得する 3 String value = request.getParameter("month"); 4 YearMonth yearMonth; 5 6 // monthが実在する日付の場合 7 if (!InputCheck.checkDate(value, "yyyy-MM")) { 8 // monthが実在しない日付の場合、405エラーへリダイレクト 9 return "forward:/error/400"; 10 } 11 12 // DBからユーザNo.取得 13 LoginInfoBean loginInfoBean = this.userInterface.getUserInfo(userId); 14 15 // ファイル名を取得 16 String name = loginInfoBean.getFamilyName() + loginInfoBean.getFirstName(); 17 18 // monthをLocalDate型にする 19 yearMonth = InputCheck.toYearMonth(value, "yyyy-MM"); 20 21 // Excelファイルのダウンロード開始 22 try (InputStream in = new FileInputStream( 23 new File(FilePathEnum.USER_DIR.getPath() + FilePathEnum.EXCEL_TEMPLATE_PATH.getPath() 24 + String.format(FilePathEnum.EXCEL_TEMPLATE_FILE_NAME.getPath(), "name"))); 25 OutputStream out = new FileOutputStream( 26 new File(FilePathEnum.USER_DIR.getPath() + FilePathEnum.EXCEL_OUTPUT_PATH.getPath() 27 + String.format(FilePathEnum.EXCEL_TEMPLATE_FILE_NAME.getPath(), name)))) { 28 29 // ユーザNo.・monthを年月日化した値でログイン情報(ユーザNo.・氏名)を取得する 30 Context context = new Context(); 31 context = this.workListImpInterface.workListGetExcel(loginInfoBean, yearMonth); 32 33 JxlsHelper.getInstance().processTemplate(in, out, context); 34 35 } 36 String CHARSET_UTF8 = "UTF-8"; 37 // ダウンロードファイルの取得 38 String fileName = "作業実績_社員.xls"; 39 File file = new File("C:/pleiades/pleiades/workspace/Kitaro/src/main/webapp/resources/output/" + fileName); 40 String savePath = file.getAbsolutePath(); 41 42 InputStream is = null; 43 byte[] fileContent = null; 44 try { 45 is = new FileInputStream(savePath); 46 fileContent = IOUtils.toByteArray(is); 47 } catch (FileNotFoundException e) { 48 e.printStackTrace(); 49 } catch (IOException e) { 50 e.printStackTrace(); 51 } finally { 52 IOUtils.closeQuietly(is); 53 } 54 55 // ファイルの書き込み 56 response.setContentType("application/octet-stream"); 57 response.setHeader("Content-Disposition", 58 "attachment; filename=" + URLEncoder.encode(fileName, CHARSET_UTF8)); 59 response.setContentLength(fileContent.length); 60 61 OutputStream os = null; 62 63 os = response.getOutputStream(); 64 os.write(fileContent); 65 os.flush(); 66 67 redirectAttribute.addAttribute("select", loginInfoBean.getUserId()); 68 69 // 検索に使用した年月日をリダイレクトにセット 70 redirectAttribute.addAttribute("month", yearMonth); 71 72 // 稼働一覧画面のパス 73 return "redirect:/manager/workList"; 74 75 } catch (Exception e) { 76 e.printStackTrace(); 77 throw new ComponentException("Excelファイル出力処理例外発生.", e); 78 } 79 } 80 81 public Resource handler_method() { 82 return new FileSystemResource( 83 "/pleiades/pleiades/workspace/Kitaro/src/main/webapp/resources/output/作業実績_社員.xls"); 84 85 } 86} 87
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。