Properties systemProps = System.getProperties();
//systemProps.put("proxySet", "true");
systemProps.put("proxyHost", "127.0.0.1");
systemProps.put("proxyPort", "8888");


当我打开提琴手时,我什么也看不到。我还必须做点别的吗?我使用提琴手代理发送ws请求。

最佳答案

尝试使用启动参数启动应用程序

-DproxyHost=127.0.0.1 -DproxyPort=8888


如果有帮助,则可能是您的代码被调用太晚或根本不调用。

07-27 20:24