我正在使用以下代码
URL obj = new URL("https://www.example.com/profile");
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(Ip, port));
HttpsURLConnection con = (HttpsURLConnection) obj.openConnection(proxy);
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
但我无法从网页上获取数据。 请建议我如何使用代理从Https网址获取数据。
提前致谢。