如何在jsp中上传图片时提高速度?

时间:2017-02-20 10:39:00

标签: javascript image file jsp parameters

我在服务器上上传多张图片,但由于尺寸较大,需要花费大量时间,有些时间超时且程序失败,请帮帮我..

File f = new File("webapps/VasundharaProduction/VehicalImg");

if(!f.isDirectory()) 
{
    f.mkdirs();
}

String itemName = item.getName();
if(itemName!="")
{
    imgcnt.add(vish);
    vno=vno.toUpperCase();
    File savedFile1 = new File("webapps\\VasundharaProduction\\VehicalImg\\"+"document"+"_"+vno+"_"+vish+++".jpg");

    //File savedFile1 = new File("D:\\"+"OwnerName_"+"_"+vno+".jpg");
    item.write(savedFile1); 
}
vish++;

0 个答案:

没有答案