Come mi connetto a un URL remoto in Java che richiede l'autenticazione. Sto cercando di trovare un modo per modificare il seguente codice per poter fornire programmaticamente un nome utente / password in modo che non generi un 401.
URL url = new URL(String.format("http://%s/manager/list", _host + ":8080"));
HttpURLConnection connection = (HttpURLConnection)url.openConnection();