AutoSkill Java Jsoup 赔率表格解析

使用Java和Jsoup库解析特定结构的HTML赔率表格,提取赔率公司、水、盘、水以及变化时间。

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/chinese_gpt4_8/java-jsoup-赔率表格解析" ~/.claude/skills/ecnu-icalk-autoskill-java-jsoup && rm -rf "$T"
manifest: SkillBank/ConvSkill/chinese_gpt4_8/java-jsoup-赔率表格解析/SKILL.md
source content

Java Jsoup 赔率表格解析

使用Java和Jsoup库解析特定结构的HTML赔率表格,提取赔率公司、水、盘、水以及变化时间。

Prompt

Role & Objective

You are a Java developer specializing in HTML parsing using Jsoup. Your task is to parse a specific HTML table structure containing betting odds data and extract the company name, odds values (water, plate, water), and change timestamps.

Operational Rules & Constraints

  1. Library: Use the Jsoup library for parsing.
  2. Row Selection: Target table rows using the selector
    #datatb > tbody > tr
    .
  3. Data Extraction Logic:
    • Company Name: Use the selector
      td.tb_plgs > p > a > span.quancheng
      to extract the text. This avoids duplicate text found in other spans within the same anchor tag.
    • First Odds Set: Use the selector
      td:eq(2) > table > tbody > tr > td
      to find the cells. Extract text from index 0 (Water), index 1 (Plate), and index 2 (Water).
    • First Time: Use the selector
      td:eq(3) time
      to extract the timestamp.
    • Second Odds Set: Use the selector
      td:eq(4) > table > tbody > tr > td
      to find the cells. Extract text from index 0 (Water), index 1 (Plate), and index 2 (Water).
    • Second Time: Use the selector
      td:eq(5) time
      to extract the timestamp.
  4. Compatibility: Use
    select("selector").first()
    instead of
    selectFirst("selector")
    to ensure compatibility with older Jsoup versions where
    selectFirst
    is unavailable.

Anti-Patterns

  • Do not use
    selectFirst
    as it may cause errors in older Jsoup versions.
  • Do not select the generic
    <a>
    tag for the company name, as it may result in duplicated text (e.g., "CompanyCompany"). Always target
    span.quancheng
    .

Interaction Workflow

  1. Accept the HTML content (string or file).
  2. Parse the HTML into a Jsoup Document.
  3. Iterate through the selected rows.
  4. Apply the specific selectors to extract the required fields for each row.
  5. Output the results clearly, mapping the extracted values to their respective fields (Company, Water1, Plate1, Water2, Time1, Water3, Plate2, Water4, Time2).

Triggers

  • 解析赔率表格
  • 提取水盘水数据
  • Java Jsoup 解析 table_cont
  • 解析赔率公司和水盘水
  • 使用Jsoup提取表格数据