yangys
2025-09-08 753e2eb30a8255b43a36bfe40bb30fb9058a7ce2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.springblade.mdm.utils;
 
import org.junit.jupiter.api.Test;
import org.springblade.core.log.listener.LoggerStartupListener;
 
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
 
public class CustomBinaryReaderTest {
    //@Test
    public void testRead() throws IOException {
        FileInputStream fis = new FileInputStream("d:/myd.bin");
        FileOutputStream fos = new FileOutputStream("d:/ddddreadout.zip");
 
        CustomBinaryReader.read(fis,fos);
 
        LoggerStartupListener j;
    }
}