一、分析:
1、如图:
2、要想B知道A是谁,如何实现?
此时clientA可以发送一个认证给服务器,服务器接到了认证信息,发送A的信息给B
二、实现
1、在客户端添加认证信息
1)创建布局文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<EditText
android:id="@+id/et"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="认证内容"
android:id="@+id/et_auth"
/>
<Button
android:text="认证"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="clickAuth"
/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="clickMessage"
android:text="通讯" />
<Button
android:text="断开连接"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="clickDisConnect"
/>
</LinearLayout>
2)在原来的ClientActivity里添加认证信息
/**
* @描述 Socket通信简易客户端
* @项目名称 SocketClient
* @包名 org.java.socket.client
* @类名 ClientActivity
* @author chenlin
* @date 2012年6月26日 下午4:43:06
* @version 1.0
*/
public class ClientActivity extends Activity {
private EditText mEtContent, mEtAuth;
private TcpManager manager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
manager = TcpManager.getInstance();
manager.connect(mHandler);
mEtContent = (EditText)findViewById(R.id.et);
mEtAuth = (EditText)findViewById(R.id.et_auth);
}
private Handler mHandler = new Handler(){
public void handleMessage(android.os.Message msg) {
switch (msg.what) {
case TcpManager.STATE_FROM_SERVER_OK:
String result = (String) msg.obj;
ToastUtil.show(ClientActivity.this, result);
break;
default:
break;
}
};
};
/**
* 发送信息
* @param view
*/
public void clickMessage(View view){
if (mEtContent.getText()!= null) {
manager.sendMessage(mEtContent.getText().toString());
}
}
/**
* 发送认证信息
* @param view
*/
public void clickAuth(View view){
if (mEtAuth.getText()!= null) {
manager.sendMessage(mEtAuth.getText().toString());
}
}
/**
* 断开连接
* @param view
*/
public void clickDisConnect(View view){
manager.disConnect();
}
@Override
protected void onDestroy() {
manager.disConnect();
super.onDestroy();
}
}
三、修改服务器内容
1、分析:
1)规定auth认证信息以”#”开始
2)发送的内容信息格式:username + “:” + content;
3)使用map封装client
2、代码:
/**
* @描述 服务器端
* @项目名称 SocketServer
* @类名 TCPServer
* @author chenlin
* @date 2012年6月26日 下午4:36:27
* @version 1.0
*/
@SuppressWarnings("all")
public class TCPServer {
public static void main(String[] args) {
//final LinkedList<Socket> list = new LinkedList<Socket>();
final Map<String, Socket> map = new HashMap<String, Socket>();
int port = 10002;
try {
ServerSocket server = new ServerSocket(port);
while (true) {
// 获得客户端连接
// 阻塞式方法
System.out.println("准备阻塞...");
final Socket client = server.accept();
System.out.println("阻塞完成...");
// 添加到集合里
//list.add(client);
new Thread(new Runnable() {
@Override
public void run() {
try {
// 输入流,为了获取客户端发送的数据
InputStream is = client.getInputStream();
// 得到输出流
OutputStream out = client.getOutputStream();
byte[] buffer = new byte[1024];
int len = -1;
System.out.println("准备read...");
while ((len = is.read(buffer)) != -1) {
String text = new String(buffer, 0, len);
if (text.startsWith("#")) {
map.put(text, client);
// 回复认证信息
out.write("认证成功,over".getBytes());
}else {
out.write("发送成功,over".getBytes());
String[] split = text.split(":");//发送信息时,用户名+“:” + content;
String key = "#" + split[0];//split[0]表示用户名称
String content = split[1];
//发送信息给其它用户
Socket s = map.get(key);
OutputStream outputStream = s.getOutputStream();
outputStream.write(content.getBytes());
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}).start();
}
} catch (Exception e) {
e.printStackTrace();
}
}
}