From 292a4634d9c52ce193eca9de356d65960bdc35f4 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Fri, 15 Jan 2021 18:20:37 +0800 Subject: [PATCH] 20210115 --- src/test/java/com/xcong/excoin/SRCTest.java | 112 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 107 insertions(+), 5 deletions(-) diff --git a/src/test/java/com/xcong/excoin/SRCTest.java b/src/test/java/com/xcong/excoin/SRCTest.java index 0513d06..1a8f83c 100644 --- a/src/test/java/com/xcong/excoin/SRCTest.java +++ b/src/test/java/com/xcong/excoin/SRCTest.java @@ -1,7 +1,109 @@ -package com.xcong.excoin;/** -* -* @author wzy -* @date 2020-11-05 -**/ +package com.xcong.excoin; + +import cn.hutool.crypto.SecureUtil; +import cn.hutool.http.HttpRequest; +import com.alibaba.fastjson.JSONObject; +import com.xcong.excoin.modules.coin.dao.TrcAddressDao; +import com.xcong.excoin.modules.coin.entity.TrcAddressEntity; +import com.xcong.excoin.utils.TRC20ApiUtils; +import org.apache.catalina.security.SecurityUtil; +import org.apache.poi.hssf.usermodel.HSSFWorkbook; +import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.Row; +import org.apache.poi.ss.usermodel.Sheet; +import org.apache.poi.ss.usermodel.Workbook; +import org.apache.poi.xssf.usermodel.XSSFWorkbook; +import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.util.HashMap; +import java.util.Map; + +/** + * @author wzy + * @date 2020-11-05 + **/ +@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) public class SRCTest { + + private static final String SRC_API = "http://27.50.59.35:5002/"; + + private static final String SIGN_STR = "w@a!llokmet"; + + public static void main(String[] args) throws NoSuchAlgorithmException { +// String applyOrderInfo = TRC20ApiUtils.getApplyOrderInfo("2020111140230002"); +// System.out.println(applyOrderInfo); + + md5Test(); + } + + private static void sign() { + + } + + @Autowired + private TrcAddressDao srcAddressDao; + + @Test + public void addressInsertTest() throws IOException { +// String src = "/Users/helius/Desktop/src20.xls"; + String src = "C:/Users/wzy19/Desktop/ace2.xls"; + File file = new File(src); + FileInputStream input = new FileInputStream(file); + + Workbook wb = null; + if (file.getName().endsWith(".xls")) { + wb = new HSSFWorkbook(input); + } else if (file.getName().endsWith(".xlsx")) { + wb = new XSSFWorkbook(input); + } + + Sheet sheet = wb.getSheetAt(0); + int lastRowNum = sheet.getLastRowNum(); + for (int i = 0; i <= lastRowNum; i++) { + Row row = sheet.getRow(i); + Cell cell = row.getCell(0); + TrcAddressEntity addressEntity = new TrcAddressEntity(); + addressEntity.setAddress(cell.getStringCellValue().trim()); + addressEntity.setIsUse(2); + srcAddressDao.insert(addressEntity); + } + } + + @Test + public void createTest() { + System.out.println(System.currentTimeMillis()); + TRC20ApiUtils.createWallet(1L, "111111", "USDT", "111111111"); + System.out.println(System.currentTimeMillis()); + } + + + + public static void md5Test() throws NoSuchAlgorithmException { + String str = "88" + "100.00000000" + "USDT" + "1" + TRC20ApiUtils.SIGN_STR; + MessageDigest md5 = MessageDigest.getInstance("md5"); + md5.update(str.getBytes()); + + str = new BigInteger(1, md5.digest()).toString(16); + + if (str.length() < 32) { + String str0 = ""; + for (int i = 0; i < 32 - str.length(); i++) { + str0 += "0"; + } + str = str0 + str; + } + System.out.println(str); + + } } -- Gitblit v1.9.1