huwhois 5 years ago
parent
commit
97982b3aaa
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/main/java/io/renren/modules/app/controller/QRCodeTest.java

+ 3 - 2
src/main/java/io/renren/modules/app/controller/QRCodeTest.java

@ -56,9 +56,10 @@ public class QRCodeTest {
56 56
    @ApiOperation("获取二维码图片地址")
57 57
    public R  getCodeImgUrl(String text)throws IOException {
58 58
		String imgpath = "/home/qcodetest/";
59
		String imgurl = "";
59
		long t = new Date().getTime();
60
		String imgurl = imgpath.t;
60 61
		try{
61
			imgurl = qRCodeUtils.encode(text, imgpath);
62
			imgurl = qRCodeUtils.encode(text, imgurl);
62 63
		}catch(Exception e){
63 64
			e.printStackTrace();
64 65
		}