我有用 c# 编写的 Web 服务,当我从我的 android 代码中请求此服务时它运行良好,它给我的连接问题我的代码看起来像这样
URL url;
try {
url = new URL("http://192.168.1.35/Audio.ashx");
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
当我调试它时,连接参数“connected = false”
有什么建议么 ??