Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个通过 TCP/IP 从 Windows 应用程序接收文本的 android 应用程序。它工作正常,但现在我正在尝试发送图像。图像被转换为字节数组并通过 TCP/IP 发送。然而,在接收端,我必须使用 if/else 语句将字节数组与普通文本字符串区分开来,以便将字节数组转换为图像并按原样显示文本消息。任何人都知道如何做到这一点?
在许多应用程序中,我遇到图像以base64 编码形式存储在xml 中。或者,您可能希望在字符串和图像中引入标头信息(在简单的情况下为标头字节或类似信息),您可以使用 if/else。