java.net.socketException:在真实设备上运行应用程序时操作超时

java.net.socketException:operation time out when running app on real device(java.net.socketException:在真实设备上运行应用程序时操作超时)
本文介绍了java.net.socketException:在真实设备上运行应用程序时操作超时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

this code works fine on emulator, but on real device it gives

java.net.SocketException:the operation timed out ive got a php script running on my xampp server.

package com.example.new1;


 import java.io.BufferedReader;
 import java.io.InputStreamReader;
 import java.net.HttpURLConnection;
 import java.net.URL;

 import android.os.AsyncTask;
 import android.os.Bundle;
 import android.app.Activity;
 import android.view.Menu;
 import android.view.View;
 import android.widget.TextView;

  public class MainActivity extends Activity {
  TextView tx;
  StringBuilder stringBuilder;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    tx= (TextView)findViewById(R.id.text);
}

public void func(View view)
{
    //tx.setText("Working fine till here.");
     new FetchSQL().execute();
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}
private class FetchSQL  extends AsyncTask<String,Void,String>

{   

    @Override
    protected String doInBackground(String... arg0) {
            URL url = null;
            BufferedReader reader = null;

            String myUrl = "http://10.22.35.4:80/conc2.php";
        try
        { url =new URL(myUrl);
          HttpURLConnection connection = (HttpURLConnection) url.openConnection();
          connection.setRequestMethod("GET");
          connection.setReadTimeout(15*10000);
          connection.connect();
          reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
          stringBuilder = new StringBuilder();
          String line = null;
          while ((line = reader.readLine()) != null)
          {
            stringBuilder.append(line + "
");

          }
        // TODO Auto-generated method stub
        return stringBuilder.toString();
        }
        catch(final Exception e)
        {
             return e.toString();
          }

    } 

    protected void onPostExecute(final String result)
    {
        tx.setText(result);
    }


}

}

when i click on button it takes the amt of time ive set in my code, and then fails giving me the error in my textview. please help

my php code.

<?php
// attempt a connection
 $dbh = pg_connect("host=10.22.35.11 dbname=iwmp_dev2 user=postgres "); 

 if (!$dbh) {
 die("Error in connection: " . pg_last_error());
 }       

 // execute query
 //$sql = $_POST['pLat'];
 $sql = "SELECT officer_name FROM iwmp_officer";

 $result = pg_query($dbh, $sql);
 if (!$result) {
 die("Error in SQL query: " . pg_last_error());
 }       
 $array = array();
// iterate over result set
// print each row
while ($row = pg_fetch_assoc($result, null)) {
  $i++;
  $array = implode('+',$row);
 echo $array; 

 }


    // free memory
    pg_free_result($result);       

     // close connection
     pg_close($dbh);
       ?>       

解决方案

java.net.SocketException exception comes when the port that you are trying to reach is not closed or not available. It takes the amount of time you have specified for searching the port and then gets out.

Firstly, try to call this service on your mobile web browser to check whether it is available or not. If it does not show that means your device is not connected to the network on which this file resides.

It may be possible that your firewall is not allowing to ping your port. When you are doing with your emulator it works since its on same PC but in case of your real device it connects via local network and some time Firewall does not allow. Solution: unblock this request on firewall or try this by closing your firewall.

这篇关于java.net.socketException:在真实设备上运行应用程序时操作超时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)