⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clientmessage_store.java

📁 用java编写的c/s结构的网络社区
💻 JAVA
字号:
package client;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;

public class ClientMessage_Store
{
	void UpdateInfo(DataOutputStream dos,DataInputStream dis,String strName,int kind) throws IOException
	{
		byte [] data=new byte[1024];
		if(kind==1)
		{
			dos.writeInt(20);
			dis.read(data);
			dos.write(strName.getBytes("GB2312"));
		}
		if(kind==2)
		{
			dos.writeInt(21);
			dis.read(data);
			dos.write(strName.getBytes("GB2312"));
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -