前提・実現したいこと
jspの画面からテキストファイルをアップロードし、
受け取ったテキストファイルを一度保存し、
保存したファイルをJavaで読み取る処理を行いたいです。
発生している問題・エラーメッセージ
Servlet側からファイルの受け取りを行い、
ファイルを保存し、
保存されたファイルのオブジェクトを取得することはできています。
Java
1// Partオブジェクトの取得 2Part part = request.getPart("uploadFile"); 3 4// アップロードされたファイル名の取得 5String fileName = getFileName(part); 6 7// ファイルパスの指定 8String filePath = "/uploaded"; 9 10// ディレクトリーの作成 11File uploadDir = mkdirs(filePath); 12 13// 指定されたパスにファイルを保存 14part.write(getServletContext().getRealPath(uploadDir.getPath() + "/" + fileName)); 15 16// ファイルクラスの生成 17File file = new File(getServletContext().getRealPath(uploadDir.getPath() + "/" + fileName));
こちらを、拡張性の高いソースに書き換えるためにServletクラスからファイル関連の処理をまとめた、Logicクラスを作成し、処理を行おうと試みているのですが、getServletContext().getRealPath()はHttpServletを継承するクラスでないと使えません。Logicクラスで使えるファイルを保存する際に絶対パスに変換するメソッドが調べてもヒットしませんでした。お助けいただけますでしょうか?
Servletクラス
Java
1package servlet; 2 3import java.io.IOException; 4import java.io.PrintWriter; 5 6import javax.servlet.RequestDispatcher; 7import javax.servlet.ServletException; 8import javax.servlet.annotation.MultipartConfig; 9import javax.servlet.annotation.WebServlet; 10import javax.servlet.http.HttpServlet; 11import javax.servlet.http.HttpServletRequest; 12import javax.servlet.http.HttpServletResponse; 13import javax.servlet.http.Part; 14 15import logic.FileLogic; 16 17/** 18 * 19 * @author 20 * mainクラス 21 * 22 */ 23@WebServlet("/MainServlet") 24@MultipartConfig(maxFileSize = 20971520, maxRequestSize = 20971520, fileSizeThreshold = 1048576, location = "/tmp") 25public class MainServlet extends HttpServlet { 26 private static final long serialVersionUID = 1L; 27 28 /** 29 * doGet() 30 */ 31 @Override 32 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 33 34 // 初期画面をフォワード 35 RequestDispatcher dispatcher = request.getRequestDispatcher("/WEB-INF/jsp/input.jsp"); 36 dispatcher.forward(request, response); 37 38 } 39 40 /** 41 * doPost() 42 * @throws IOException 43 * @throws ServletException 44 */ 45 @Override 46 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { 47 48 // 文字コード指定 49 response.setContentType("text/html; charset=UTF-8"); 50 51 // Partオブジェクトの取得 52 Part part =request.getPart("uploadFile"); 53 54 // ファイルに関する処理実行 55 FileLogic fileLogic = new FileLogic(); 56 fileLogic.execute(part); 57 58 // 初期画面をフォワード 59 RequestDispatcher dispatcher = request.getRequestDispatcher("/jsp/output.jsp"); 60 dispatcher.forward(request, response); 61 62 } 63}
ファイル処理に関するLogicクラス
Java
1package logic; 2 3import java.io.BufferedReader; 4import java.io.File; 5import java.io.FileNotFoundException; 6import java.io.FileReader; 7import java.io.IOException; 8import java.sql.SQLException; 9 10import javax.servlet.http.Part; 11 12import dao.UploadedFileDao; 13 14/** 15 * 16 * ファイルの処理に関するクラス 17 * @author 18 * 19 */ 20public class FileLogic { 21 22 /** 23 * ファイルの処理 24 */ 25 public File execute(Part part) { 26 27 // アップロードされたファイル名の取得 28 String fileName = getFileName(part); 29 30 // ファイルパスの指定 31 String filePath = "/WEB-INF/uploaded"; 32 33 // ディレクトリーの作成 34 File uploadDir = mkdirs(filePath); 35 36 // 指定されたパスにファイルを保存 37 try { 38 part.write(getRealPath(uploadDir.getPath() + "/" + fileName)); 39 } catch (IOException e) { 40 // FileUnsavedError 41 System.out.println("FileUnsavedError"); 42 } 43 44 // ファイルオブジェクトの生成 45 File file = new File(getRealPath(uploadDir.getPath() + "/" + fileName)); 46 47 // ファイルの読み込みを実行 48 readFile(file); 49 50 return file; 51 } 52 53 /** 54 * ファイル読み込みを実行するメソッド 55 * @return ファイル読み取ったもの 56 * @throws IOException 57 * @throws SQLException 58 * @throws ClassNotFoundException 59 * @throws IllegalAccessException 60 * @throws InstantiationException 61 */ 62 public void readFile(File file) { 63 64 // ファイルのチェック 65 66 // エラーが出た時(例外処理) 67 68 // ファイルを1文字ずつ読み込む 69 FileReader fileReader = null; 70 try { 71 fileReader = new FileReader(file); 72 } catch (FileNotFoundException e) { 73 // FileReaderError 74 e.printStackTrace(); 75 } 76 77 // ファイルを1行ずつ読み込む 78 BufferedReader bufferedReader = new BufferedReader(fileReader); 79 80 // INSERTするテキストを抽出 81 String str = null; 82 try { 83 str = bufferedReader.readLine(); 84 } catch (IOException e) { 85 // BufferedReaderError 86 e.printStackTrace(); 87 } 88 String comma = " , "; 89 StringBuilder contentStr = new StringBuilder(); 90 while(str != null) { 91 contentStr.append(str+comma); 92 } 93 94 // DB処理に関するオブジェクトを取得 95 UploadedFileDao dao = new UploadedFileDao(); 96 97 // テーブルにレコードを追加するメソッドの呼び出し 98 dao.insert(contentStr.toString()); 99 100 } 101 102 /** 103 * ファイル名を取得するメソッド 104 */ 105 public String getFileName(Part part) { 106 String name = null; 107 for (String dispotion : part.getHeader("Content-Disposition").split(";")) { 108 if(dispotion.trim().startsWith("filename")) { 109 name = dispotion.substring(dispotion.indexOf("=") + 1).replace("\"", "").trim(); 110 name = name.substring(name.lastIndexOf("\") + 1); 111 break; 112 } 113 } 114 return name; 115 } 116 117 /** 118 * ディレクトリーの作成をするメソッド 119 */ 120 private File mkdirs(String filePath) { 121 File uploadDir = new File(filePath); 122 uploadDir.mkdirs(); 123 return uploadDir; 124 } 125 126 127} 128
補足情報(FW/ツールのバージョンなど)
VPS内にtomcatをインストールし、そこで動かすことをしようとしています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/15 02:52
2021/01/15 02:53
2021/01/15 02:57
2021/01/15 03:10
2021/01/15 03:24
2021/01/15 03:26
2021/01/15 03:29