I am trying to implement a simple EchoServer, EchoClient application with 2 Android Devices.
But I have a major problem with the input methods in the Android.
In Java, the common System.in input method is used but in Android I have no idea how to do it
Asked
Active
Viewed 1,282 times
0

OneCricketeer
- 179,855
- 19
- 132
- 245

JimmyD_84
- 31
- 3
1 Answers
0
In Android, System.in and System.out are not used. You can use Log.d("TAG", "MESSAGE") to print to the debug log.
A tutorial for creating a connection between phones is here, but if you haven't done any Android programming before, I suggest that you start by browsing through the Dev Guide.

user775598
- 1,323
- 9
- 7