当前位置: 技术问答>java相关
使用TCP协议通讯,如果有很多种数据要传输,如:注册信息等,在C++中,我们可以使用结构,java中通常大家又是如何打包的呢?
来源: 互联网 发布时间:2015-02-19
本文导语: 使用TCP协议通讯,如果有很多种数据要传输,如:注册信息等,在C++中,我们可以使用结构,java中通常大家又是如何打包传输的呢? | 类,在java中,没有结构只有类。 比如 CMessage implements Searializable...
使用TCP协议通讯,如果有很多种数据要传输,如:注册信息等,在C++中,我们可以使用结构,java中通常大家又是如何打包传输的呢?
|
类,在java中,没有结构只有类。
比如
CMessage implements Searializable
{
final static int LOGIN_MSG=0;
final static int LOGOUT_MSG=1;
int msg_type;
String user_name;
String user_password;
....
}
这样实现Socket之间的消息传递。
|
use objectoutputstream 和 objectinputstream
|
There are lots of ways to do that!
1)use Serialize
ObjectIOStream
2)define ur own protocol and communicate by text
3)use rpc
4)use xml (soap)
1)use Serialize
ObjectIOStream
2)define ur own protocol and communicate by text
3)use rpc
4)use xml (soap)