struts2怎样上传文件到数据库中

struts2怎样上传文件到数据库中,第1张

struts2怎样上传文件数据库中

struts2上传文件保存到数据库中,参考代码如下:

File file=new File("D:/2.jpg")

try {

FileInputStream in=new FileInputStream(file)

int len=0

byte[] b=new byte[(int) file.length()]

in.read(b)

in.close()

System.out.println(b.length)

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace()

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

1在你的struts-config中首先不能使用form,使用的话会报错

2在你jsp的form中增加属性enctype="multipart/form-data"

这样你的文件内容会被都城二进制数据传到后台,在后台获取值保存及可以了


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9409684.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存