我在执行此任务时遇到了一些麻烦,我可以使用一些帮助:
我尝试使用JSP / Java Servlet将图片从我的文件系统上传到MYSQL数据库
我在图片文件夹中有一个文件。 我知道我应该读取文件,将其转换为一个字节,获取outputStream,但我没有运气这么做(而且我没有发布任何代码,因为我的尝试是火车残骸)。在文件位于outputStream之后,我知道如何将sql语句形成为带有引用为blob的blob的插件?参数,但我无法做到这一点。
非常感谢任何帮助。
答案 0 :(得分:0)
您需要遵循的步骤 1.在主视图中使用input type =“file”标签。 2.使用DiskFileItemFactory读取上传文件的所有字节 3.将文件保存在服务器的文件夹中 4.使用此文件夹位置的文件名标识文件,并将其存储到MySql DB中 为此使用blob 5.不要直接从本地系统中选择文件并存储在数据库中,首先必须将其上传到服务器然后执行DAO操作
答案 1 :(得分:0)
公共类UploadFilesServlet扩展了HttpServlet {
public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException
{
res.setContentType("text/html");
PrintWriter pw=res.getWriter();
try
{
//step1
DiskFileItemFactory df=new DiskFileItemFactory();
//step2
df.setSizeThreshold(10000); //setting buffersize
String temp=getServletContext().getRealPath("/WEB-INF/temp");
df.setRepository(new File(temp)); //if buffer crossed comes into the temp
//step3
ServletFileUpload sf=new ServletFileUpload(df);
//step4
List<FileItem> items=(List<FileItem>)sf.parseRequest(req);
//step5
for(FileItem item: items)
{
if(item.isFormField())
{
//this item is a simple text field
String name=item.getFieldName();
String value=item.getString();
pw.println(name+"="+value+"<br/>");
}
else
{
//this is a file
String name=item.getFieldName();
String fileName=item.getName();
if(fileName.lastIndexOf('\\')!=-1)
fileName=fileName.substring(fileName.lastIndexOf('\\')+1);
fileName=getServletContext().getRealPath("/WEB-INF/upload/"+fileName);
item.write(new File(fileName));
pw.println("file:"+fileName+"saved</br>");
BlobDemo.saveFile(fileName);
}//else
}//for
}catch(Exception e){e.printStackTrace(); }
}
}
在上传文件后,此代码将客户端的文件放入WEB_INF / upload文件夹中 使用相同的路径找到文件,并使用streams和blob数据类型来存储文件及其文件名。
public class BlobDemo {
private static String url = "jdbc:oracle:thin:@localhost:1521:xe";
private static String username = "kodejava";
private static String password = "welcome";
public static void saveFile(String fileName)throws Exception {
Connection conn = null;
FileInputStream fis = null;
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
conn = DriverManager.getConnection(url, username, password);
conn.setAutoCommit(false);
String sql = "INSERT INTO Files_Table(name, file) VALUES (?, ?)";
PreparedStatement stmt = conn.prepareStatement(sql);
stmt.setString(1, fileName);
File file = new File("WEB-INF\\upload\\"+fileName);
fis = new FileInputStream(file);
stmt.setBinaryStream(2, fis, (int) file.length());
stmt.execute();
conn.commit();
} catch (SQLException e) {
e.printStackTrace();
} finally {
if (fis != null) {
fis.close();
}
if (conn != null && !conn.isClosed()) {
conn.close();
}
}
}
}