在Stripes中下载excel表格

在Stripes中下载excel表格

 

        InputStream is = null ;
        
try {
         is
=new FileInputStream(new File(filepath));         
         
return new StreamingResolution("application/vnd.ms-excel",is);
        }

        
catch (Exception e) {
            
return null;
        }
其中"application/vnd.ms-excel指明返回的类型"

你可能感兴趣的:(在Stripes中下载excel表格)