Android 中的 EchoServer、EchoClient

发布于 2024-11-11 19:40:33 字数 142 浏览 2 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风月客 2024-11-18 19:40:33

在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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文