Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For reasons unknown to me, I cannot establish a connection between my Android (4.2) and my computer. The same code works for my colleague ...

Server code looks like this (relevant part):

private static List<Socket> socketList = Collections.synchronizedList(new ArrayList<Socket>());  
private ExecutorService exec;     
private ServerSocket server;  

public static void main(String[] args) {     
    new AndroidServer();     
}     

public AndroidServer() {  
    try {  
        server = new ServerSocket(80);  

        exec = Executors.newCachedThreadPool();  
        Socket client = null;  
        while (true) {  
            client = server.accept();
            System.out.println("hello")
            socketList.add(client);   
            exec.execute(new ChatTask(client));     
        }     
    } catch (IOException e) {     
        e.printStackTrace();  
    }  
}

Client code (on Android phone) looks like this (a bit messy, sorry):

try {
    String IP_ADDRESS = "123.123.123.123";
    socket = new Socket(IP_ADDRESS, 80);

    exec.execute(new Sender(socket));
    userId = socket.getInetAddress() + ":" + socket.getLocalPort();

    println("[" + userId + "] is connected with Android Server");

    BufferedReader br=new BufferedReader(new InputStreamReader(socket.getInputStream()));

    PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())),true);

    String mstr = br.readLine();
    if (mstr != null) {
        text1.setText(mstr); //text1 is a text field in the Android view
    } else {
        text1.setText("");
    }
    out.close();
    br.close();
    socket.close();
} 

static class Sender implements Runnable{ 
private Socket socket;

public Sender(Socket socket){
    this.socket = socket;
}

@Override
public void run() {
    try {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));     
        PrintWriter pw = new PrintWriter(socket.getOutputStream(), true);
        String msg; 

    while (true) {                    
        msg = br.readLine();  
        if (msg.length() == 0)
            {  
                print(socket.getLocalPort()+":>");  
            } else {  
                pw.println(msg);  
                continue;  
        }  
        [some code skipped]
        }  
        pw.close();  
        br.close();  
        socket.close();

    } catch (Exception e) {
        e.printStackTrace();
    }
}

The AndroidManifest.xml of the Android source looks like this:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="net.testSocket"
    android:versionCode="1"
    android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".TestSocket"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
share|improve this question
What does your AndroidManifest.xml look like? – Phil Feb 27 at 13:44
I've added it in the code above. – Momro Feb 27 at 14:36
what is the IP address of the server and your device? – SatelliteSD Feb 27 at 14:40
The IP address of my server is 134.2.x.x and correctly inserted in the Android source. The phone's address is not in the source because it should be accessible via socket ... shouldn't it? – Momro Feb 27 at 14:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.