:memo:调整部分代码

This commit is contained in:
hellohao
2025-02-28 09:28:42 +08:00
parent c5b288c405
commit a634353fa8
2 changed files with 0 additions and 74 deletions
@@ -1,51 +0,0 @@
//package cn.hellohao.utils;
//
//import java.io.IOException;
//import java.util.Base64;
//
///**
// * Created by Hellohao on 2019-08-27.
// */
//public class Base64Encryption {
//// public static void toBaseCode(String str) {
//// String data = encryptBASE64(str.getBytes());
//// }
//// public static String decryptBASE64(String key) {
//// byte[] b =null;
//// try {
//// b = (new BASE64Decoder()).decodeBuffer(key);
//// } catch (IOException e) {
//// e.printStackTrace();
//// }
//// return new String(b);
//// }
//// public static String encryptBASE64(byte[] key) {
//// String string = "SGVsbG9oYW8K";
//// return (new BASE64Encoder()).encodeBuffer(key).replaceAll("\r|\n", "");
//// }
//
//
// public static void toBaseCode(String str) {
// String data = encryptBASE64(str.getBytes());
// }
//
// public static String decryptBASE64(String key) {
// byte[] b = null;
// try {
// b = Base64.getDecoder().decode(key);
// } catch (IllegalArgumentException e) {
// e.printStackTrace();
// }
// return new String(b);
// }
//
// public static String encryptBASE64(byte[] key) {
// String string = "SGVsbG9oYW8K";
// return Base64.getEncoder().encodeToString(key);
// }
//
//
//
//
//
//}
@@ -1,23 +0,0 @@
package cn.hellohao.utils;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
* @author Hellohao
* @version 1.0
* @date 2019/9/20 16:27
*/
public class DateUtils {
public static String plusDay(int num){
Date d = new Date();
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String currdate = format.format(d);
Calendar ca = Calendar.getInstance();
ca.add(Calendar.DATE, num);
d = ca.getTime();
String enddate = format.format(d);
return enddate;
}
}