|
@ -55,11 +55,12 @@ public class QRCodeTest {
|
55
|
55
|
@GetMapping("qcodetesturl")
|
56
|
56
|
@ApiOperation("获取二维码图片地址")
|
57
|
57
|
public R getCodeImgUrl(String text)throws IOException {
|
58
|
|
String imgpath = "/home/qcodetest/";
|
59
|
|
long t = new Date().getTime();
|
60
|
|
String imgurl = imgpath.t;
|
61
|
|
try{
|
62
|
|
imgurl = qRCodeUtils.encode(text, imgurl);
|
|
58
|
String imgpath = "/kexiu/webdata/data/qcode";
|
|
59
|
String rpath = "www.ekexiu.com/data/qcode/";
|
|
60
|
String imgurl = "";
|
|
61
|
try{
|
|
62
|
String file = qRCodeUtils.encode(text, null, imgpath, false);
|
|
63
|
imgurl = rpath+file;
|
63
|
64
|
}catch(Exception e){
|
64
|
65
|
e.printStackTrace();
|
65
|
66
|
}
|