码迷,mamicode.com
首页 > 系统相关 > 详细

charles 抓取eclipse中的请求

时间:2016-12-02 14:05:03      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:set   windows   edit   led   post请求   运行   jre   argument   port   

charles抓取eclipse中的请求

有时候,想要监测eclipse中发送get获取post请求,一样可以使用代理方式:

代码中添加,可以就写在主函数中,然后再调用请求函数。

System.setProperty("http.proxySet", "true"); 
System.setProperty("http.proxyHost", "127.0.0.1"); 
System.setProperty("http.proxyPort", "8888");

 

或者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中运行的请求。

charles 抓取eclipse中的请求

标签:set   windows   edit   led   post请求   运行   jre   argument   port   

原文地址:http://www.cnblogs.com/airsen/p/6125373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!