有時候,想要監測eclipse中發送get獲取post請求,一樣可以使用代理方式:
代碼中添加,可以就寫在主函數中,然後再調用請求函數。
System.setProperty("http.proxySet", "true");
System.setProperty("http.proxyHost", "127.0.0.1");
System.setProperty("http.proxyPort", "8885");
或者eclipse 中設置
Windows > preferences > java > installed jres
選中installed jres > edit > 設置Default VM arguments:-Dhttp.proxySet="true" -Dhttp.proxyHost="127.0.0.1" -Dhttp.proxyPort="8888"
再設置charles 中的代理,端口必須保持一致,就可以抓取eclipse中運行的請求。