如何将Android应用程序连接到静态IP地址

问题描述 投票:0回答:1

我正在尝试开发一个需要通过wifi连接到另一台设备的应用程序。我知道其他设备的 IP 地址,但是当我尝试连接到它时,却无法连接。

private static String getUrl(String direccion) throws ConnectException{

    try {
        URL u = new URL("http://192.168.1.216");

        HttpURLConnection co = (HttpURLConnection) u.openConnection();
        BufferedReader reader = new BufferedReader(new InputStreamReader(co.getInputStream()));
        String line;

        while ((line = reader.readLine()) != null) 
            //buffer.append(line);
            System.out.println(line);

         reader.close();
         co.disconnect();
         System.out.println("######InputStream CORRECTA... "+u);

         return line;
    } catch (MalformedURLException e) {
        throw new ConnectException();

    } catch (java.net.ConnectException e){
        throw e;

    } catch (IOException e) {
        throw new ConnectException();
    } 
}
android wifi ip-address
1个回答
0
投票

您还需要指定这些:

      co.setRequestMethod("GET");
      co.setDoOutput(true);
      co.connect();

因此,试试这个:

private static String getUrl(String direccion) throws ConnectException {
    try {
        URL u = new URL("http://192.168.1.216");

        HttpURLConnection co = (HttpURLConnection) u.openConnection();
        co.setRequestMethod("GET");
        co.setDoOutput(true);
        co.connect();
        BufferedReader reader = new BufferedReader(new InputStreamReader(co.getInputStream()));
        String line;

        while ((line = reader.readLine()) != null) 
            //buffer.append(line);
            System.out.println(line);

            reader.close();
            co.disconnect();
            System.out.println("######InputStream CORRECTA... "+u);

            return line;
    } catch (MalformedURLException e) {
        throw new ConnectException();

    } catch (java.net.ConnectException e){
        throw e;

    } catch (IOException e) {
        throw new ConnectException();
    } 
}
© www.soinside.com 2019 - 2024. All rights reserved.