9 lines
311 B
Batchfile
9 lines
311 B
Batchfile
@echo off
|
|
chcp 65001
|
|
echo 编译测试配置程序...
|
|
javac -encoding UTF-8 -cp target/image-ocr-monitor-1.0-SNAPSHOT-jar-with-dependencies.jar test_config.java
|
|
|
|
echo 运行测试配置程序...
|
|
java -Dfile.encoding=UTF-8 -cp target/image-ocr-monitor-1.0-SNAPSHOT-jar-with-dependencies.jar;. test_config
|
|
|
|
pause |