я не могу вставить изображение блоба в oracle db используя jdbc

2

Я пытаюсь загрузить изображение в базу данных Oracle с помощью JDBC. Я получаю исключение "Система не может найти указанный файл"

Это код

<%@page import="java.sql.PreparedStatement"%>
<%@page import="java.io.FileInputStream"%>
<%@page import="java.io.*"%>
<%@page import="java.sql.DriverManager"%>
<%@page import="java.sql.Connection"%>
<%@page import="java.util.*"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
 <body>

  <%
try{ 
    Class.forName("oracle.jdbc.driver.OracleDriver");
    System.out.println("Connection loaded");
    Connection c=DriverManager.getConnection       ("jdbc:oracle:thin:@localhost:1521:xe","system","oracle123");
System.out.println("Connection created");
String ll=request.getParameter("user_file");
String id=request.getParameter("id");
File imgfile = new File(ll);//till this pint the code is running correctly
FileInputStream fin = new FileInputStream(imgfile);//working in this point...
PreparedStatement pre = c.prepareStatement("insert into PHOTOS (id,photo) values(?,?)");
pre.setString(1,id);
pre.setBinaryStream(2,fin,(int)imgfile.length());
pre.executeUpdate();
pre.close();
}catch(Exception E){out.println("the eror is  "+ E);}
      %>
</body>
</html>
  • 2
    Распечатайте трассировку стека и пройдите сюда. Возможно, вы ищете файл, который находится вне контекста вашего приложения
  • 2
    Такой код действительно не принадлежит JSP.
Показать ещё 2 комментария
Теги:
jdbc
blob
fileinputstream

1 ответ

0

Предполагая, что вы пришли из составного HTTP POST, как

<form action="upload.jsp" method="post" enctype="multipart/form-data">
    <input type="text" name="id" size="10" />
    <br />
    <input type="file" name="user_file" size = "50" />
    <br />
    <input type="submit" value="Upload File" />
</form>

Вам нужен компонент загрузки файлов, например org.apache.commons.fileupload, и что-то вроде

Class.forName("oracle.jdbc.driver.OracleDriver");

DiskFileItemFactory factory = new DiskFileItemFactory();
// Set memory threshold - beyond which files are stored in disk 
factory.setSizeThreshold(1024*1024); // 1Mb
// Set temporary location to store files
factory.setRepository(new File(System.getProperty("java.io.tmpdir")));

ServletFileUpload upload = new ServletFileUpload(factory);

try (Connection c = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","system","oracle123")) {
    String id = null;
    InputStream photo = null;
    int photoSize = 0;

    for (FileItem item : upload.parseRequest(request)) {

        if (item.isFormField()) {
                if (item.getFieldName().equals("id")) {
                    id = item.getString();
                }
        } else {
            if (item.getFieldName().equals("user_file")){
                photo = item.getInputStream();
                photoSize = item.getSize();
            }
        }
    }

    assert (id!=null);
    assert (photo!=null);

    try (PreparedStatement pre = c.prepareStatement("insert into PHOTOS (id,photo) values(?,?)")) {
        pre.setString(1,id);
        pre.setBinaryStream(2,item.getInputStream(),item.getSize());
        pre.executeUpdate();
    }
}
  • 0
    спасибо, мистер Серг, я получаю эту ошибку java.sql.SQLException: отсутствует параметр IN или OUT в index :: 2
  • 0
    я редактирую эту строку // для (элемент FileItem: upload.parseRequest (новый ServletRequestContext (request))) и добавляю 2 строки: pre.executeUpdate (); pre.close (); }}}%>
Показать ещё 4 комментария

Ещё вопросы

Сообщество Overcoder
Наверх
Меню