zouyu
2025-06-05 4960c8975807c39be4b6ee97aac20e95b789df9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.chinaztt.mes.docx;
 
import org.apache.commons.lang3.ObjectUtils;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
 
import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.IOException;
 
@SpringBootTest
class DataAcquisitionApplicationTests {
 
    @Test
    void  contextLoads() {
        if (ObjectUtils.allNotNull("null")) {
            System.out.println("成功");
        } else {
            System.out.println("失败");
        }
    }
}