Java Jsoup 赔率表格解析-0e0509 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Java Jsoup 赔率表格解析-0e0509 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
使用Java和Jsoup库解析特定结构的HTML赔率表格,提取赔率公司、水、盘、水以及变化时间。
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.
#datatb > tbody > tr.td.tb_plgs > p > a > span.quancheng to extract the text. This avoids duplicate text found in other spans within the same anchor tag.td:eq(2) > table > tbody > tr > td to find the cells. Extract text from index 0 (Water), index 1 (Plate), and index 2 (Water).td:eq(3) time to extract the timestamp.td:eq(4) > table > tbody > tr > td to find the cells. Extract text from index 0 (Water), index 1 (Plate), and index 2 (Water).td:eq(5) time to extract the timestamp.select("selector").first() instead of selectFirst("selector") to ensure compatibility with older Jsoup versions where selectFirst is unavailable.selectFirst as it may cause errors in older Jsoup versions.<a> tag for the company name, as it may result in duplicated text (e.g., "CompanyCompany"). Always target span.quancheng.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.