首页 > Web开发 > 详细

webUtil

时间:2015-01-06 19:58:26      阅读:294      评论:0      收藏:0      [点我收藏+]

判断客户端是否为IE

public static boolean isIE(HttpServletRequest request) {
        String userAgent = request.getHeader("User-Agent").toLowerCase();
        return userAgent.contains("msie") || userAgent.contains("trident");
    }

设置让浏览器弹出下载对话框的Header

public static void setDownloadableHeader(HttpServletRequest request, HttpServletResponse response, String fileName) {
        String charsetName = "utf-8";
        if (WebUtil.isIE(request)) {
            charsetName = "gb2312";
        }
        response.setContentType("application/octet-stream");
        try {
            response.setHeader("Content-Disposition", "attachment; filename=" + new String(fileName.getBytes(charsetName), "iso8859-1"));
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
    }

 

webUtil

原文:http://www.cnblogs.com/fudapeng/p/4206702.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!