Android 中的 EchoServer、EchoClient
我正在尝试使用 2 个 Android 设备实现一个简单的 EchoServer、EchoClient 应用程序。
但我在 Android 的输入法上遇到了一个大问题。 在Java中,使用常见的System.in输入法,但在Android中我不知道如何做到这一点
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在Android中,不使用System.in和System.out。您可以使用 Log.d("TAG", "MESSAGE") 打印到调试日志。
在手机之间创建连接的教程位于此处,但如果您之前没有进行过任何 Android 编程,我建议您首先浏览 开发指南。
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.