用Unirest套件
下載跟使用方式:Unirest for Java
舉例我要爬IT邦自己的個人資料:
HttpResponse<String> response = Unirest.get("https://ithelp.ithome.com.tw/users/20105988")
.header("cache-control", "no-cache")
.asString();
PS.Unirest本身也支持python,不懂可以先看python範例對照
假如想功能在強大一點的套件可以使用,寫法會複雜一點
yasserg/crawler4j: Open Source Web Crawler for Java