|
@@ -316,11 +316,13 @@ public class BillSubsidyController {
|
|
|
return iBillSubsidyService.countPay(httpServletRequest, parasMap);
|
|
|
}
|
|
|
|
|
|
- public static void main(String[] args) {
|
|
|
- String str = "1548926646265684";
|
|
|
+ public static void main(String[] args) throws Exception {
|
|
|
+ QrCodeExcelPrinter qrCodeExcelPrinter = new QrCodeExcelPrinter();
|
|
|
+ String str = "6";
|
|
|
str = "hm:" + str;
|
|
|
String encode = Base64.getEncoder().encodeToString(str.getBytes());
|
|
|
System.out.println(encode);
|
|
|
+ qrCodeExcelPrinter.test(encode);
|
|
|
//Base64解码
|
|
|
byte[] decodedBytes = Base64.getMimeDecoder().decode(encode);
|
|
|
String decodedMime = new String(decodedBytes);
|