Skip to content

toinvest/stock-recommend-automatic-judgment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stock-recommend-automatic-judgment

TODO:

  • 15 点 30 自动比对数据
  • 添加 git 自动提交结果功能

数据来源

股票历史记录

当日成交明细

private static final String url = "https://money.finance.sina.com.cn/corp/go.php/vMS_MarketHistory/stockid/600071.phtml";

public static void main(String[] args) throws Exception{
    Document document = Jsoup.connect(url).get();
    Element element = document.getElementById("FundHoldSharesTable");
    System.out.println(element.child(1).child(1));
}

依赖

<dependency>
    <groupId>org.jsoup</groupId>
    <artifactId>jsoup</artifactId>
    <version>1.8.3</version>
</dependency>

LICENSE

Releases

No releases published

Packages

No packages published

Languages