前提・実現したいこと
LinuxサーバーにApacheとTomcatをインストールし、
Tomcatに作成したソースコードを配置し、コンパイルする際にエラーが発生しています。
今回は、コンパイルエラーを解決したいです。
MainServlet.java
の配置先
/opt/apache-tomcat-8.5.61/webapps/FileInputOutputApp/WEB-INF/classes/Servlet
MkdirLogic.java
FileNameLogic.java
File.java
の配置先
/opt/apache-tomcat-8.5.61/webapps/FileInputOutputApp/WEB-INF/classes/model
コンパイル時の入力コマンド
$ javac -classpath "/opt/apache-tomcat-8.5.61/lib/servlet-api.jar" MainServlet.java
発生している問題・エラーメッセージ
MainServlet.java:17: error: package model does not exist import model.FileDao; ^ MainServlet.java:18: error: package model does not exist import model.FileNameLogic; ^ MainServlet.java:19: error: package model does not exist import model.MkdirLogic; ^ MainServlet.java:56: error: cannot find symbol FileNameLogic getFileNameLogic = new FileNameLogic(); ^ symbol: class FileNameLogic location: class MainServlet MainServlet.java:56: error: cannot find symbol FileNameLogic getFileNameLogic = new FileNameLogic(); ^ symbol: class FileNameLogic location: class MainServlet MainServlet.java:63: error: cannot find symbol MkdirLogic mkdirLogic = new MkdirLogic(); ^ symbol: class MkdirLogic location: class MainServlet MainServlet.java:63: error: cannot find symbol MkdirLogic mkdirLogic = new MkdirLogic(); ^ symbol: class MkdirLogic location: class MainServlet MainServlet.java:82: error: cannot find symbol FileDao fileDao = new FileDao(); ^ symbol: class FileDao location: class MainServlet MainServlet.java:82: error: cannot find symbol FileDao fileDao = new FileDao(); ^ symbol: class FileDao location: class MainServlet 9 errors
該当のソースコード
Java
1package Servlet; 2 3import java.io.BufferedReader; 4import java.io.File; 5import java.io.FileReader; 6import java.io.IOException; 7 8import javax.servlet.RequestDispatcher; 9import javax.servlet.ServletException; 10import javax.servlet.annotation.MultipartConfig; 11import javax.servlet.annotation.WebServlet; 12import javax.servlet.http.HttpServlet; 13import javax.servlet.http.HttpServletRequest; 14import javax.servlet.http.HttpServletResponse; 15import javax.servlet.http.Part; 16 17import model.FileDao; 18import model.FileNameLogic; 19import model.MkdirLogic; 20 21/** 22 * 23 * @author 24 * 25 */ 26@WebServlet("/MainServlet") 27@MultipartConfig(maxFileSize = 20971520, maxRequestSize = 20971520, fileSizeThreshold = 1048576, location = "/opt/apache-tomcat-8.5.61/temp") 28public class MainServlet extends HttpServlet { 29 private static final long serialVersionUID = 1L; 30 31 /** 32 * doGet() 33 */ 34 @Override 35 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 36 37 // フォワード 38 RequestDispatcher dispatcher = request.getRequestDispatcher("/jsp/input.jsp"); 39 dispatcher.forward(request, response); 40 41 } 42 43 /** 44 * doPost() 45 */ 46 @Override 47 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 48 49 // 文字コード指定 50 response.setContentType("text/html; charset=UTF-8"); 51 52 // Partオブジェクトの取得 53 Part part = request.getPart("uploadFile"); 54 55 // アップロードされたファイル名の取得 56 FileNameLogic getFileNameLogic = new FileNameLogic(); 57 String fileName = getFileNameLogic.getFileName(part); 58 59 // ファイルパスの指定 60 String filePath = "/uploaded"; 61 62 // ディレクトリーの作成 63 MkdirLogic mkdirLogic = new MkdirLogic(); 64 File uploadDir = mkdirLogic.mkdirs(filePath); 65 66 // 指定されたパスにファイルを保存 67 part.write(getServletContext().getRealPath(uploadDir.getPath() + "/" + fileName)); 68 69 // ファイルクラスの生成 70 File file = new File(getServletContext().getRealPath(uploadDir.getPath() + "/" + fileName)); 71 72 // ファイルを1文字ずつ読み込む 73 FileReader fileReader = new FileReader(file); 74 75 // ファイルを1行ずつ読み込む 76 @SuppressWarnings("resource") 77 BufferedReader bufferedReader = new BufferedReader(fileReader); 78 String data = bufferedReader.readLine(); 79 System.out.println("受け取ったファイルのテキスト:" + data + "<br>"); 80 81 // DBに接続・テーブルにレコードを追加 82 FileDao fileDao = new FileDao(); 83 fileDao.create(data); 84 } 85} 86 87
Java
1package model; 2 3import java.io.File; 4 5/** 6 * 7 * @author 8 * 9 */ 10public class MkdirLogic { 11 12 /** 13 * ディレクトリーの作成 14 */ 15 public File mkdirs(String filePath) { 16 File uploadDir = new File(filePath); 17 uploadDir.mkdirs(); 18 return uploadDir; 19 } 20 21} 22
Java
1package model; 2 3import javax.servlet.http.Part; 4 5/** 6 * 7 * @author 8 * 9 */ 10public class FileNameLogic { 11 12 /** 13 * ファイル名の取得 14 */ 15 public String getFileName(Part part) { 16 String name = null; 17 for (String dispotion : part.getHeader("Content-Disposition").split(";")) { 18 if (dispotion.trim().startsWith("filename")) { 19 name = dispotion.substring(dispotion.indexOf("=") + 1).replace("\"", "").trim(); 20 name = name.substring(name.lastIndexOf("\") + 1); 21 break; 22 } 23 } 24 return name; 25 } 26 27} 28
Java
1package model; 2 3import java.sql.Connection; 4import java.sql.DriverManager; 5import java.sql.PreparedStatement; 6import java.sql.SQLException; 7 8/** 9 * 10 * @author 11 * 12 */ 13public class FileDao { 14 15 // DB接続に使用する情報 16 String url = "jdbc:mariadb://localhost/upload_db"; 17 String user = "****"; 18 String password = "****"; 19 20 Connection conn = null; 21 PreparedStatement ps = null; 22 23 /** 24 * DBにテキストデータをINSERT 25 */ 26 public boolean create(String data) { 27 28 // DB接続 29 try { 30 // JDBCドライバのロード 31 Class.forName("org.mariadb.jdbc.Driver").newInstance(); 32 33 // DB接続 34 conn = DriverManager.getConnection(url, user, password); 35 36 //INSERT文の準備 37 String insertSql = "INSERT INTO `upload_file` (`contents`) VALUES (?)"; 38 ps = conn.prepareStatement(insertSql); 39 ps.setString(1, data); 40 41 ps.executeUpdate(); 42 conn.commit(); 43 }catch (ClassNotFoundException e){ 44 System.out.println("ClassNotFoundException:" + e.getMessage()); 45 }catch (SQLException e){ 46 System.out.println("SQLException:" + e.getMessage()); 47 }catch (Exception e){ 48 System.out.println("Exception:" + e.getMessage()); 49 }finally{ 50 try{ 51 if (conn != null){ 52 // DB切断 53 conn.close(); 54 }else{ 55 System.out.println("コネクションがありません"); 56 } 57 }catch (SQLException e){ 58 System.out.println("SQLException:" + e.getMessage()); 59 } 60 } 61 62 return true; 63 } 64 65} 66
補足情報
/opt/apache-tomcat-8.5.61/webapps/FileInputOutputApp/WEB-INF/classes/model
下に配置した
MkdirLogic.java
FileNameLogic.java
File.java
は、コンパイルエラーなく実行できております。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/06 01:40
2021/01/06 03:13
2021/01/06 03:40