system_out 제거
This commit is contained in:
+1
-1
@@ -200,6 +200,6 @@ public class SnapHmacSha512VerifyFilter implements HttpAdapterFilter {
|
||||
"o3Hre3voTrHbLueDrHC0LYM5effHQZILI8t23htbD12TKD5QJUMONqFqv4494iQS46bzHS0xW1fBC5LHo3D0SzhZvQcPUaJZw0iQ79NnzYFUCTrEsoFJRL300dp3Ql4y")
|
||||
.hmacHex(str);
|
||||
|
||||
System.out.println(hmac);
|
||||
// System.out.println(hmac);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,13 +17,13 @@ public class GzipBase64Util {
|
||||
try {
|
||||
String base64EncodedData = compress(originalString);
|
||||
|
||||
System.out.println("Original String: " + originalString);
|
||||
System.out.println("Base64 Encoded String: " + base64EncodedData);
|
||||
// System.out.println("Original String: " + originalString);
|
||||
// System.out.println("Base64 Encoded String: " + base64EncodedData);
|
||||
|
||||
// Base64 디코딩 후 gzip 압축 해제
|
||||
String decodedString = decompress(base64EncodedData);
|
||||
|
||||
System.out.println("Decoded String: " + decodedString);
|
||||
// System.out.println("Decoded String: " + decodedString);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@ public class VirtualAccountBatchUtil {
|
||||
public String unzipAndSave(String aesKey, String jsonString, String rootFilePath, String fileNamePattern) throws Exception {
|
||||
// gzippedValue 추출
|
||||
String gzippedValue = getGzipValue(jsonString, "encData");
|
||||
System.out.println("gzippedValue[" + gzippedValue + "]");
|
||||
// System.out.println("gzippedValue[" + gzippedValue + "]");
|
||||
|
||||
// 압축 해제
|
||||
String unziped = GzipBase64Util.decompress(gzippedValue);
|
||||
|
||||
@@ -64,8 +64,8 @@ public class VirtualAccountTransform {
|
||||
list.add(" $.encAccount ");
|
||||
list.add(" $.accounts$.encAccount ");
|
||||
String cubeOneJson = toCubeOne(aesKey, list, json);
|
||||
System.out.println(cubeOneJson);
|
||||
System.out.println(toAES(aesKey, list, cubeOneJson));
|
||||
// System.out.println(cubeOneJson);
|
||||
// System.out.println(toAES(aesKey, list, cubeOneJson));
|
||||
}
|
||||
|
||||
}
|
||||
@@ -76,6 +76,6 @@ public final class GUIDGeneratorKAKAOCARD {
|
||||
|
||||
public static void main(String[] args) {
|
||||
String guid = getGUID("FEP");
|
||||
System.out.println("[" + guid.length() + "]" + guid);
|
||||
// System.out.println("[" + guid.length() + "]" + guid);
|
||||
}
|
||||
}
|
||||
@@ -93,6 +93,6 @@ public final class GUIDGeneratorKJB {
|
||||
|
||||
public static void main(String[] args) {
|
||||
String guid = getGUID("051");
|
||||
System.out.println("[" + guid.length() + "]" + guid);
|
||||
// System.out.println("[" + guid.length() + "]" + guid);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user