From 97627b824c15e74011b7325595d370201fb52162 Mon Sep 17 00:00:00 2001 From: qaiu <736226400@qq.com> Date: Tue, 21 Oct 2025 12:49:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parser/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/parser/README.md b/parser/README.md index f32f825..8a15ec1 100644 --- a/parser/README.md +++ b/parser/README.md @@ -36,10 +36,11 @@ dependencies { ## 使用示例(极简) ```java -Vertx vx = Vertx.vertx(); -WebClientVertxInit.init(vx); -IPanTool tool = ParserCreate.fromShareUrl("https://www.lanzoui.com/xxx").createTool(); -List list = tool.parseFileList().toCompletionStage().toCompletableFuture().join(); +List list = ParserCreate + .fromShareUrl("https://share.feijipan.com/s/3pMsofZd") + .createTool() + .parseFileList() + .toCompletionStage().toCompletableFuture().join(); ``` 完整示例与调试脚本见 parser/doc/README.md。