我使用Struts2创建注册表单,我想将图像路径存储在数据库中,然后想要在jsp中检索图像。 所以在RegistrationService类中我使用fileinput流,以便将路径放在数据库中。 但是我得到了一个错误。
java.sql.SQLException:从InputStream读取时出错 java.io.IOException的
RegistrationService.java
FileInputStream fis1 = new FileInputStream(registration.getResume_attachment());
p.setBinaryStream(25,fis1,fis1.available());
FileOutputStream fos_resume=new FileOutputStream(registration.getResume_attachment());
byte buffer[]=new byte[1024];
int read=0;
while((read=fis1.read(buffer, 0, 1024))!=-1){
fos_resume.write(buffer);
}
fis1.close();
fos_resume.close();
Registration.java
public class Registration{
private String resume_attachment;
private String photo_attachment;
private String pre_company;
//getter and setter