-2

我有一个非常简单的客户端服务器应用程序工作。在我向服务器发送消息时,它会发回一些信息,我想做的是让 android(客户端)格式化它收到的消息,就像将消息的一部分放在 textview/editText 中一样另一半在另一个不同的地方。有没有办法做到这一点?

任何帮助都非常感谢,并提前感谢。

所以我将从android发送50126057行,服务器将发送回“prd|50126057|12bars|5|199|1|[)”它作为字符串发送。

4

1 回答 1

1

是的!例如,您可以使用表达式(使用正则表达式)或使用 substsr() 拆分字符串。

String response = "Hello, World";
String[] words = response.split(" ");
TextView tv1 = (TextView) findViewById(R.id....);
TextView tv2 = (TextView) findViewById(R.id....);
tv1.setText(words[0]);
tv2.setText(words[1]);
于 2013-04-04T11:30:19.437 回答