|
@@ -1,5 +1,6 @@
|
|
|
package com.fdage.base.utils;
|
|
package com.fdage.base.utils;
|
|
|
|
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.google.zxing.BarcodeFormat;
|
|
import com.google.zxing.BarcodeFormat;
|
|
|
import com.google.zxing.EncodeHintType;
|
|
import com.google.zxing.EncodeHintType;
|
|
@@ -8,15 +9,21 @@ import com.google.zxing.common.BitMatrix;
|
|
|
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
|
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
|
|
|
import fdage.back.sdk.utils.FileUtils;
|
|
import fdage.back.sdk.utils.FileUtils;
|
|
|
import lombok.extern.log4j.Log4j2;
|
|
import lombok.extern.log4j.Log4j2;
|
|
|
|
|
+import org.apache.tools.ant.util.DateUtils;
|
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
import org.springframework.util.CollectionUtils;
|
|
|
import org.springframework.util.StringUtils;
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
|
|
import javax.imageio.ImageIO;
|
|
import javax.imageio.ImageIO;
|
|
|
|
|
+import javax.net.ssl.HttpsURLConnection;
|
|
|
|
|
+import javax.net.ssl.SSLContext;
|
|
|
|
|
+import javax.net.ssl.SSLSocketFactory;
|
|
|
|
|
+import javax.net.ssl.TrustManager;
|
|
|
import java.awt.image.BufferedImage;
|
|
import java.awt.image.BufferedImage;
|
|
|
-import java.io.File;
|
|
|
|
|
-import java.io.IOException;
|
|
|
|
|
|
|
+import java.io.*;
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
|
|
+import java.net.ConnectException;
|
|
|
|
|
+import java.net.URL;
|
|
|
import java.security.MessageDigest;
|
|
import java.security.MessageDigest;
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
import java.util.*;
|
|
import java.util.*;
|
|
@@ -255,6 +262,121 @@ public class DataUtils {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 发送https请求
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param requestUrl 请求地址
|
|
|
|
|
+ * @param requestMethod 请求方式(GET、POST)
|
|
|
|
|
+ * @param outputStr 提交的数据
|
|
|
|
|
+ * @return JSONObject(通过JSONObject.get(key)的方式获取json对象的属性值)
|
|
|
|
|
+ */
|
|
|
|
|
+ public static JSONObject httpsRequest(String requestUrl, String requestMethod, String outputStr) {
|
|
|
|
|
+ JSONObject jsonObject = null;
|
|
|
|
|
+ try {
|
|
|
|
|
+ // 创建SSLContext对象,并使用我们指定的信任管理器初始化
|
|
|
|
|
+ TrustManager[] tm = {new MyX509TrustManager()};
|
|
|
|
|
+ SSLContext sslContext = SSLContext.getInstance("SSL", "SunJSSE");
|
|
|
|
|
+ sslContext.init(null, tm, new java.security.SecureRandom());
|
|
|
|
|
+ // 从上述SSLContext对象中得到SSLSocketFactory对象
|
|
|
|
|
+ SSLSocketFactory ssf = sslContext.getSocketFactory();
|
|
|
|
|
+
|
|
|
|
|
+ URL url = new URL(requestUrl);
|
|
|
|
|
+ HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
|
|
|
|
|
+ conn.setSSLSocketFactory(ssf);
|
|
|
|
|
+
|
|
|
|
|
+ conn.setDoOutput(true);
|
|
|
|
|
+ conn.setDoInput(true);
|
|
|
|
|
+ conn.setUseCaches(false);
|
|
|
|
|
+ // 设置请求方式(GET/POST)
|
|
|
|
|
+ conn.setRequestMethod(requestMethod);
|
|
|
|
|
+
|
|
|
|
|
+ // 当outputStr不为null时向输出流写数据
|
|
|
|
|
+ if (null != outputStr) {
|
|
|
|
|
+ OutputStream outputStream = conn.getOutputStream();
|
|
|
|
|
+ // 注意编码格式
|
|
|
|
|
+ outputStream.write(outputStr.getBytes("UTF-8"));
|
|
|
|
|
+ outputStream.close();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 从输入流读取返回内容
|
|
|
|
|
+ InputStream inputStream = conn.getInputStream();
|
|
|
|
|
+ InputStreamReader inputStreamReader = new InputStreamReader(inputStream, "utf-8");
|
|
|
|
|
+ BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
|
|
|
|
|
+ String str = null;
|
|
|
|
|
+ StringBuffer buffer = new StringBuffer();
|
|
|
|
|
+ while ((str = bufferedReader.readLine()) != null) {
|
|
|
|
|
+ buffer.append(str);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 释放资源
|
|
|
|
|
+ bufferedReader.close();
|
|
|
|
|
+ inputStreamReader.close();
|
|
|
|
|
+ inputStream.close();
|
|
|
|
|
+ inputStream = null;
|
|
|
|
|
+ conn.disconnect();
|
|
|
|
|
+ jsonObject = JSONObject.parseObject(buffer.toString());
|
|
|
|
|
+ } catch (ConnectException ce) {
|
|
|
|
|
+ log.error("连接超时:{}", ce);
|
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
|
+ log.error("https请求异常:{}", e);
|
|
|
|
|
+ }
|
|
|
|
|
+ return jsonObject;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 生成订单的编号order_sn
|
|
|
|
|
+ */
|
|
|
|
|
+ public static String generateOrderNumber() {
|
|
|
|
|
+ Calendar cal = Calendar.getInstance();
|
|
|
|
|
+ cal.setTime(new Date());
|
|
|
|
|
+ String timeStr = DateUtils.format(cal.getTime(), "yyyyMMddHHmmssSSS");
|
|
|
|
|
+ return timeStr + getRandomNum(6);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取随机字符串
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param num
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ public static String getRandomNum(Integer num) {
|
|
|
|
|
+ String base = "0123456789";
|
|
|
|
|
+ Random random = new Random();
|
|
|
|
|
+ StringBuffer sb = new StringBuffer();
|
|
|
|
|
+ for (int i = 0; i < num; i++) {
|
|
|
|
|
+ int number = random.nextInt(base.length());
|
|
|
|
|
+ sb.append(base.charAt(number));
|
|
|
|
|
+ }
|
|
|
|
|
+ return sb.toString();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ public static String getSha1(String str) {
|
|
|
|
|
+ if (str == null || str.length() == 0) {
|
|
|
|
|
+ return null;
|
|
|
|
|
+ }
|
|
|
|
|
+ char hexDigits[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
|
|
|
+ 'a', 'b', 'c', 'd', 'e', 'f'};
|
|
|
|
|
+ try {
|
|
|
|
|
+ MessageDigest mdTemp = MessageDigest.getInstance("SHA1");
|
|
|
|
|
+ mdTemp.update(str.getBytes("UTF-8"));
|
|
|
|
|
+
|
|
|
|
|
+ byte[] md = mdTemp.digest();
|
|
|
|
|
+ int j = md.length;
|
|
|
|
|
+ char buf[] = new char[j * 2];
|
|
|
|
|
+ int k = 0;
|
|
|
|
|
+ for (int i = 0; i < j; i++) {
|
|
|
|
|
+ byte byte0 = md[i];
|
|
|
|
|
+ buf[k++] = hexDigits[byte0 >>> 4 & 0xf];
|
|
|
|
|
+ buf[k++] = hexDigits[byte0 & 0xf];
|
|
|
|
|
+ }
|
|
|
|
|
+ return new String(buf);
|
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
|
+ // TODO: handle exception
|
|
|
|
|
+ return null;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/* public static void main(String[] args) throws Exception{
|
|
/* public static void main(String[] args) throws Exception{
|
|
|
createQRCode("https://www.4dkankan.com/spc.html?m=t-pnj0IJX", "C:/Users/4dage/Desktop/logo-file/t-pnj0IJX1.png", null);
|
|
createQRCode("https://www.4dkankan.com/spc.html?m=t-pnj0IJX", "C:/Users/4dage/Desktop/logo-file/t-pnj0IJX1.png", null);
|
|
|
}*/
|
|
}*/
|