摘要:
简易缓存,可以设置时间的缓存 private static Cache<String,String> tokenCache = CacheBuilder.newBuilder().expireAfterWrite(29, TimeUnit.DAYS).build(); private static 阅读全文
摘要:
一,注意path地址是http请求访问到的地址,而不是文件路径 //后台代码 response.setHeader("Content-Disposition", "attachment;filename="+filename); URL url = new URL(path); // path是指欲 阅读全文