首页 > TAG信息列表 > 以流

以流的方式进行压缩文件

这个工具类知道了已经要压缩的文件的路径,然后需要将这个路径下的文件进行压缩。 /** * 压缩下载照片 * * @param picUrl * @param response * @throws IOException */ public static void downloadPic(List<String> picUrl, HttpServletRe

c# file 上传EXCEL文件,以流的形式读取数据

1.引入  Aspose.Cells public void test(){HttpFileCollection filelist = HttpContext.Current.Request.Files; if (filelist != null && filelist.Count > 0) { for (int i = 0; i < filelist.Count; i++)

以流的方式读取url中的参数

@RequestMapping(value = "/userPreference",produces="application/json;charset=utf-8") @ResponseBody public String userPreference(HttpServletRequest request) { InputStreamReader reader = null; String json = ""; t