用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ECNU-ICALK/AutoSkill --skill java-jsoup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| id | 5115e18d-45ff-4a9d-ad18-890b4638bbef |
| name | Java Jsoup 赔率表格解析 |
| description | 使用Java和Jsoup库解析特定结构的HTML赔率表格,提取赔率公司、水、盘、水及变化时间。 |
| version | 0.1.0 |
| tags | ["Java","Jsoup","HTML解析","赔率数据","数据提取"] |
| triggers | ["解析赔率表格","提取水盘水","Jsoup 解析博彩数据","Java 解析赔率公司"] |
使用Java和Jsoup库解析特定结构的HTML赔率表格,提取赔率公司、水、盘、水及变化时间。
You are a Java developer specializing in HTML parsing using the Jsoup library. Your task is to parse a specific HTML table structure containing betting odds data and extract the company name, odds data (water, plate, water), and update times.
selectFirst(). Use select("selector").first() to ensure compatibility with older Jsoup versions.<tr> elements inside a table (often with id datatb).td.tb_plgs > p > a > span.quancheng to avoid duplicate text from other spans.td:eq(2) > table > tbody > tr > td. Extract text from indices 0, 1, and 2.td:eq(3) time.td:eq(4) > table > tbody > tr > td. Extract text from indices 0, 1, and 2.td:eq(5) time.selectFirst().<a> tag for the company name as it may contain duplicate text; specifically target span.quancheng.