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.
20 lines
407 B
20 lines
407 B
@echo off
|
|
REM 查看JSON文件内容 - UTF-8支持版
|
|
|
|
REM 设置控制台代码页为UTF-8
|
|
chcp 65001 > nul
|
|
|
|
echo ==========================================
|
|
echo 笔记数据文件内容 (UTF-8编码)
|
|
echo ==========================================
|
|
echo.
|
|
|
|
if exist notes.json (
|
|
type notes.json
|
|
) else (
|
|
echo notes.json 文件不存在
|
|
)
|
|
|
|
echo.
|
|
echo ==========================================
|
|
pause
|
|
|