if(request.getHeader("User-Agent").toUpperCase().indexOf("MSIE") > 0){
    response.setHeader("Content-disposition", "attachment; filename="
            + URLEncoder.encode(product.getRealName1(), "UTF-8"));
    }else{
        response.setHeader("Content-disposition", "attachment; filename="
            + new String(product.getRealName1().getBytes("utf-8"), "ISO8859-1"));
}

 

版权声明:本文为konghou原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/konghou/p/3819004.html