Struts2中图片以base64方式上传至数据库
1.页面这里输入代码
<div> <spanid="uploadImg"style="margin:50px;background-color:#ddd;display:inline-block;height:130px;width:200px;"> <spanstyle="color:#bbb;font-weight:600;border:2px#cccdashed;font-size:20px;text-align:center;display:inline-block;height:50px;width:50px;line-height:50px;position:absolute;margin-top:40px;margin-left:75px;z-index:99">+ </span> <imgid="preview"style="display:none;"> </span> <inputtype="file"style="display:none"name="ImgCard"id="imgFileBtn"id="imgFileBtn"style="width:150px;"onchange="javascript:setImagePreview();"/></div>
2.后台
privateFileImgCard; privateStringImgCardContentType; privateStringImgCardFileName; publicvoidgetImg(){ BASE64Encoderencoder=newBASE64Encoder(); BufferedImagebi; booleanisImage=false; String[]imgExts={".jpg",".jpeg",".bmp",".png"}; for(Stringext:imgExts){ if(ImgCardFileName.toLowerCase().endsWith(ext)){ isImage=true; break; } } if((ImgCard.length()/1024/1024)>3){ returnERROR; } bi=ImageIO.read(ImgCard); ByteArrayOutputStreambaos=newByteArrayOutputStream(); ImageIO.write(bi,"jpg",baos); byte[]bytes=baos.toByteArray(); Stringimg=encoder.encodeBuffer(bytes).trim(); }
以上所述是小编给大家介绍的Struts2中图片以base64方式上传至数据库,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!