Score:0

Q.How to Retrieve File/Image from Database And Display in JSP web page using Hibernate , MySQL Database?

I need a code that can help me to retrieve my image/file from Mysql database and also display it on the webpage(.jsp) by using HIbernate and Servlet JSP. Q.How to Retrieve File/Image from Database And Display in JSP web page using Hibernate , MySQL Database?, Here's My Code...

`/**Employee and Login Registration*/

private void saveEmp(HttpServletRequest request, 
HttpServletResponse response) throws ServletException, IOException {        
Employee emp = new Employee();  
Part part = request.getPart("image");
InputStream is = null;

if(part != null) {
    is = part.getInputStream();
    byte[] data = new byte[is.available()];
    is.read();
    emp.setImage(data);     
            
boolean status = MainServices.saveEmp(emp);
        if(status)
        {
            MainServices.saveLoginData(login);
            request.setAttribute("msg", "Form Submitted Successfully...");
            request.getRequestDispatcher("adminHome.jsp").include(request, response);
        }
        else
        {
            request.setAttribute("msg","Email or Mobile Number is already Registered with us....");
            request.getRequestDispatcher("empForm.jsp").include(request, response);
        }
    }
}
David avatar
cn flag
สิ่งนี้เกี่ยวข้องกับ Ubuntu เวอร์ชันที่ไม่ได้ระบุที่คุณใช้อยู่หรือไม่
in flag
คำแนะนำสองข้อ: (1) อ่านหนังสือของ Joe Celko เกี่ยวกับฐานข้อมูล (และโดยเฉพาะสิ่งที่ *ไม่* ต้องทำกับพวกเขา) (2) ถามคำถามนี้ใน StackOverflow ซึ่งคุณมีโอกาสสูงที่จะได้รับคำตอบ
โอเค ขอบคุณท่านเซอร์

โพสต์คำตอบ

คนส่วนใหญ่ไม่เข้าใจว่าการถามคำถามมากมายจะปลดล็อกการเรียนรู้และปรับปรุงความสัมพันธ์ระหว่างบุคคล ตัวอย่างเช่น ในการศึกษาของ Alison แม้ว่าผู้คนจะจำได้อย่างแม่นยำว่ามีคำถามกี่ข้อที่ถูกถามในการสนทนา แต่พวกเขาไม่เข้าใจความเชื่อมโยงระหว่างคำถามและความชอบ จากการศึกษาทั้ง 4 เรื่องที่ผู้เข้าร่วมมีส่วนร่วมในการสนทนาด้วยตนเองหรืออ่านบันทึกการสนทนาของผู้อื่น ผู้คนมักไม่ตระหนักว่าการถามคำถามจะมีอิทธิพลหรือมีอิทธิพลต่อระดับมิตรภาพระหว่างผู้สนทนา