admin
2022-01-28 cd7767932dddeaf6d9c73a83d4a9b38f0341b77f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.hxh.spring.test;
 
import com.yeshi.buwan.util.DESUtil;
import com.yeshi.buwan.util.FileUtil;
import org.junit.Test;
 
import java.io.IOException;
 
public class DES {
    @org.junit.Test
    public void test1() {
        String st = "iDp+mknN2uptRUo51EW28wcdP2q0yp6iFgzTe1sLzcs/jyg32plI0rWA5ixujhGdNWb8QJY1JUs=";
        System.out.println(DESUtil.decode(st));
    }
 
    @Test
    public void test2() throws IOException {
        String text = FileUtil.readTxt("C:\\Users\\Administrator\\Desktop\\切片缓存\\新建文本文档.txt");
        System.out.println(DESUtil.decode(text));
    }
}