Doing
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("proxy.****.ru", 3128)); URLConnection urlConnection = new URL(url_).openConnection(proxy); urlConnection.setConnectTimeout(80000); urlConnection.setReadTimeout(80000); URL url = urlConnection.getURL(); as a result, the url variable is obtained without a proxy. and then it is transmitted without a proxy. What is the problem?
