import javanetSocket;
public class Demo {
public static void main(String[] args) throws Exception {
//ip,端口数组定义
String[] ip_port = {"19216813,2000","12230445,8080"};
//要发送的内容
String message = "我能发送多个服务器";
getFaSong(ip_port,message);
}
//一个客户端向多个服务端发送同样的内容,服务器ip和端口用,分开
private static void getFaSong(String[] arr,String message)throws Exception{
for(int i = 0; i < arrlength; i++){
String[] ip_port = arr[i]split(",");
Socket sk = new Socket(ip_port[0],IntegerparseInt(ip_port[1]));
OutputStream os = skgetOutputStream();
oswrite(messagegetBytes());
osclose();
skclose();
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)