You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
392 B
16 lines
392 B
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
|
|
set CLASSPATH=libs\gson-2.10.1.jar;libs\slf4j-api-2.0.9.jar;libs\slf4j-simple-2.0.9.jar;libs\json-20231013.jar;out
|
|
|
|
echo ===== 招聘数据爬取测试 =====
|
|
echo 2 > temp_input.txt
|
|
java -cp "%CLASSPATH%" com.example.crawler.Main < temp_input.txt
|
|
del temp_input.txt 2>nul
|
|
|
|
echo.
|
|
echo ===== 检查data目录 =====
|
|
dir data
|
|
echo.
|
|
echo ===== 完成 =====
|