我有一个函数,我发送流媒体的URL。
hplayRadioStream("https://radio.itechnepal.com/pathibhara/stream");
所以我已经与服务器建立了连接:
private static void hplayRadioStream(String spec) throws MalformedURLException, IOException, JavaLayerException {
URL url= new URL(spec);
HttpsURLConnection huc= (HttpsURLConnection) url.openConnection();
InputStream response= huc.getInputStream();
Player player= new Player(response);
player.play();
}
现在它发回403错误消息。我正在使用JLayer播放流。我错过了什么吗?即使在浏览器中粘贴此URL也会发送禁止的消息。请在这里提供一些提示。