80 以外のポート番号を含む URL から情報を取得するためのコードを書いています。ありがとうございました。
HttpsURLConnection connection_ = null;
URL url = new URL("https://localhost:9080/xyz");
connection_ = (HttpsURLConnection) url.openConnection();
if (connection_ != null) {
connection_.disconnect();
}
if (connection_.getResponseCode() != 200) {
throw new IOException(connection_.getResponseMessage());
}
// Buffer the result into a string
BufferedReader rd = new BufferedReader(
new InputStreamReader(connection_.getInputStream()));
StringBuilder sb = new StringBuilder();
String line;
while ((line = rd.readLine()) != null) {
sb.append(line);
}
System.out.println(sb.toString());
rd.close();
connection_.disconnect();
}