黑马程序员技术交流社区
标题:
网络通信_聊天程序
[打印本页]
作者:
尹兆国
时间:
2014-6-14 21:00
标题:
网络通信_聊天程序
package com.itheima.day23;
/*
编写一个聊天程序。
有收数据的部分,和发数据的部分。
这两部分需要同时执行。
那就需要用到多线程技术。
一个线程控制收,一个线程控制发。
因为收和发动作是不一致的,所以要定义两个run方法。
而且这两个方法要封装到不同的类中。
*/
import java.io.*;
import java.net.*;
class Send implements Runnable
{
private DatagramSocket ds;
public Send(DatagramSocket ds)
{
this.ds = ds;
}
public void run()
{
try
{
BufferedReader bufr = new BufferedReader(new InputStreamReader(System.in));
String line = null;
while((line=bufr.readLine())!=null)
{
byte[] buf = line.getBytes();
DatagramPacket dp =
new DatagramPacket(buf,buf.length,InetAddress.getByName("192.168.1.14"),10002);
ds.send(dp);
if("886".equals(line))
break;
}
}
catch (Exception e)
{
throw new RuntimeException("发送端失败");
}
}
}
class Rece implements Runnable
{
private DatagramSocket ds;
public Rece(DatagramSocket ds)
{
this.ds = ds;
}
public void run()
{
try
{
while(true)
{
byte[] buf = new byte[1024];
DatagramPacket dp = new DatagramPacket(buf,buf.length);
ds.receive(dp);
String ip = dp.getAddress().getHostAddress();
String data = new String(dp.getData(),0,dp.getLength());
if("886".equals(data))
{
System.out.println(ip+"....离开聊天室");
break;
}
System.out.println(ip+":"+data);
}
}
catch (Exception e)
{
throw new RuntimeException("接收端失败");
}
}
}
class ChatDemo
{
public static void main(String[] args) throws Exception
{
DatagramSocket sendSocket = new DatagramSocket();
DatagramSocket receSocket = new DatagramSocket(10002);
new Thread(new Send(sendSocket)).start();
new Thread(new Rece(receSocket)).start();
}
}
复制代码
虚拟机ip:
192.168.1.14
物理机器ip:
192.168.1.100
我想让虚拟机和物理机器之前可以聊天,怎么实现啊
我设置虚拟机网卡为host only模式,手动配置,和物理机同网段,但ping不通网关
2.jpg
(66.39 KB, 下载次数: 0)
下载附件
2014-6-14 20:59 上传
作者:
江夷
时间:
2014-6-14 21:57
虚拟机和主机在同一网段,无需ping通网关就可以进行通信,只要彼此的IP地址可以ping就可以了,如果能ping通就可以先排除网络问题
作者:
uu993
时间:
2014-6-14 22:58
虚拟机网络设置有问题,具体的参考http://os.51cto.com/art/200912/168800.htm
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2