更新 README.md

This commit is contained in:
qaiu
2025-10-21 12:49:10 +08:00
committed by GitHub
parent 6dbdc9bd90
commit 97627b824c

View File

@@ -36,10 +36,11 @@ dependencies {
## 使用示例(极简)
```java
Vertx vx = Vertx.vertx();
WebClientVertxInit.init(vx);
IPanTool tool = ParserCreate.fromShareUrl("https://www.lanzoui.com/xxx").createTool();
List<FileInfo> list = tool.parseFileList().toCompletionStage().toCompletableFuture().join();
List<FileInfo> list = ParserCreate
.fromShareUrl("https://share.feijipan.com/s/3pMsofZd")
.createTool()
.parseFileList()
.toCompletionStage().toCompletableFuture().join();
```
完整示例与调试脚本见 parser/doc/README.md。