Hi,
I had tried to give the permission "android.permission.INTERNET",
using telnet and execute a command "redir add tcp:400:400".
But, same exception "A java.net.BindException" was thrown.
It questions again.
Is it possible to use the ServerSocket class in Android ?
The following are my codes.
//! STR my code
try
{
ServerSocket srvrSock = new ServerSocket(400);
}
catch(IOException e)
{
e.printStackTrace();
}
catch(Exception e)
{
e.printStackTrace();
}
//! END my code
Thank you for any pointers.
riverwide
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---