java浏览器文件下载和图片显示(流形式)

浏览器文件下载:如果你想在浏览器中实现下载功能--一些原本不默认下载的文件,如:jpg、xml等。

图片显示(流形式):如果你想在浏览器中显示图片,而图片不是一个静态文件(没有url地址)

那我们应该怎么做呢?

分析:

浏览器获得文件是通过http协议的,

所以只要我设置好请求(request)返回的响应(response)的一些信息应该就行了,

那就是设置响应(response)头的一些信息喽。

解决:

浏览器文件下载设置:

Content-Type:application/octet-stream           // 未分类的二进制数据

Content-Disposition:attachment;filename=yourFileName  //附件形式处理,文件名为yourFileName

Content-Length:yourFile.length               //文件的大小

而文件以流形式输出为浏览器就行了。

这样浏览器就能识别该文件是通过附件的形式下载的了。

java的servlet代码:

复制代码
public HttpServletResponse getFile(String path,HttpServletRequest request, HttpServletResponse response) {
        try {
            File file = new File(request.getRealPath("/")+"/"+path);
            String filename = file.getName();

            InputStream fis = new BufferedInputStream(new FileInputStream(file));
            byte[] buffer = new byte[fis.available()];
            fis.read(buffer);
            fis.close();

            response.reset();
            // 设置response的Header
            response.addHeader("Content-Disposition", "attachment;filename=" + new String(filename.getBytes("utf-8"),"ISO-8859-1"));
            response.addHeader("Content-Length", "" + file.length());
            OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
            response.setContentType("application/octet-stream");
            toClient.write(buffer);
            toClient.flush();
            toClient.close();
        } catch (IOException ex) {
            ex.printStackTrace();
        }
        return response;
    }
复制代码

 java的restlet主要代码:

复制代码
            final byte[] bpmnBytes = //文件流字节;
            Disposition disposition = new Disposition(Disposition.TYPE_ATTACHMENT);
            disposition.setFilename(fileName);
            OutputRepresentation output = new OutputRepresentation(org.restlet.data.MediaType.APPLICATION_OCTET_STREAM) {
                public void write(OutputStream os)
                        throws IOException
                {
                    os.write(bpmnBytes);
                    os.flush();
                }
            };
            output.setDisposition(disposition);
            return output;
复制代码

 

图片(流形式)显示设置:

Content-Type:image/jpeg                // jpeg、jpg、jpe、jfif形式的图片

Content-Length:yourImg.length              //图片大小

而图片以流形式输出为浏览器就行了。

java的servlet代码:

复制代码
public HttpServletResponse getImage(String path,HttpServletRequest request, HttpServletResponse response) {
        try {
            File file = new File(request.getRealPath("/")+"/"+path);
            String filename = file.getName();

            InputStream fis = new BufferedInputStream(new FileInputStream(file));
            byte[] buffer = new byte[fis.available()];
            fis.read(buffer);
            fis.close();

            response.reset();
            // 设置response的Header            
            response.addHeader("Content-Length", "" + file.length());
            OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
            response.setContentType("image/jpeg");
            toClient.write(buffer);
            toClient.flush();
            toClient.close();
        } catch (IOException ex) {
            ex.printStackTrace();
        }
        return response;
    }
复制代码

 java的restlet主要代码:

复制代码
                final byte[] result = //图片流字节;

                return new OutputRepresentation(MediaType.IMAGE_PNG) {
                    public void write(OutputStream os)
                            throws IOException
                    {
                        os.write(result);
                        os.flush();
                        os.close();
                    }
                };
复制代码

 

这样浏览器就能正确识别该图片,并在浏览器中识别出来。

当然也可以是img标签的src中显示。



原文地址:http://www.cnblogs.com/wxxian001/archive/2013/04/24/3040648.html

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值