记录一个和诡异的BUG
程序员文章站
2022-06-08 13:32:32
...
Map<String, Object> map = Maps.newHashMap(); if (key.equals(SignUtils.getKey(url))) { try { String path = request.getSession().getServletContext().getRealPath(url); String[] fv = path.split("\\."); File newFile = new File(fv[0]+"_sign.png"); // 用下面三行代码 生成的图片有延迟,就是生成完成几秒后才能访问,具体原因不明白 // String newUrl = fv[0]+"_sign.png"; // String newFilePath = request.getSession().getServletContext().getRealPath(newUrl);//fv[0]+"_sign.png"; // File newFile = new File(newFilePath); File oldFile = new File(request.getSession().getServletContext().getRealPath(url)); InputStream in = new FileInputStream(oldFile); byte[] b = IOUtils.toByteArray(in); b = ImageUtils.transferAlpha(ImageUtils.ByteToBufferedImage(b), 150, x, y, width, height, rotate); Files.write(b,newFile); map.put("result", true); map.put("url", SignUtils.getUrl()+newFile.getName()); } catch (Exception e) { e.printStackTrace(); map.put("result", false); map.put("message", "操作失败:"+e.getMessage()); } } else { map.put("result", false); map.put("message", "非法操作"); } response.flushBuffer(); return map;
这个程序是把一个web目录下的图片进行抠图处理,然进行另外命名保存处理,然后返回新的图片的路径,结果用注释掉的三行马*问就是访问不到,换一种写法就好了。
请看注释,其实两个获取的绝对路径是一模一样的,但是第二个(注释掉的代码)就是有延迟,要三四秒后才能访问到
上一篇: org.hibernate.QueryException: ClassNotFoundException: org.hibernate.hql.ast.HqlT
下一篇: spring mvc 3.2 测试
推荐阅读