Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ECNU-ICALK/AutoSkill --skill java-jsoup명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| id | 87c2d52e-24d7-4bc1-b65b-0debf6c74e26 |
| name | Java Jsoup 赔率表格解析 |
| description | 使用Java和Jsoup库解析特定结构的HTML赔率表格,提取赔率公司、水、盘、水以及变化时间。 |
| version | 0.1.0 |
| tags | ["Java","Jsoup","HTML解析","数据提取","赔率"] |
| triggers | ["解析赔率表格","提取水盘水数据","Java Jsoup 解析 table_cont","解析赔率公司和水盘水","使用Jsoup提取表格数据"] |
使用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.