当前位置: 技术问答>java相关
寻求有关通讯的源代码,可以发到我油箱june37@163.com,小女子先谢谢了!100分
来源: 互联网 发布时间:2015-09-17
本文导语: 我是刚刚学编程的,第一次来这里,大家好!斑竹好! 希望大家帮帮我! 有关通讯的代码都可以!客户端,服务端连接的最好! june37@163.com | SimpleServer.java ----------------------------------------------...
我是刚刚学编程的,第一次来这里,大家好!斑竹好!
希望大家帮帮我!
有关通讯的代码都可以!客户端,服务端连接的最好!
june37@163.com
希望大家帮帮我!
有关通讯的代码都可以!客户端,服务端连接的最好!
june37@163.com
|
SimpleServer.java
----------------------------------------------------
import java.net.*;
import java.io.*;
public class SimpleServer {
public static void main(String args[]) {
ServerSocket s = null;
int i = 0;
// Register your service on port 5432
try {
s = new ServerSocket(5432);
} catch (IOException e) {
// ignore
}
// Run the listen/accept loop forever
while (true) {
try {
// Wait here and listen for a connection
Socket s1 = s.accept();
// Get output stream associated with the socket
OutputStream s1out = s1.getOutputStream();
DataOutputStream dos = new DataOutputStream(s1out);
// Send your string!
dos.writeUTF("Server say: Hello! you come here "+ ++i + "times!");
// Close the connection, but not the server socket
dos.close();
s1.close();
} catch (IOException e) {
// ignore
}
}
}
}
----------------------------------------------------
import java.net.*;
import java.io.*;
public class SimpleServer {
public static void main(String args[]) {
ServerSocket s = null;
int i = 0;
// Register your service on port 5432
try {
s = new ServerSocket(5432);
} catch (IOException e) {
// ignore
}
// Run the listen/accept loop forever
while (true) {
try {
// Wait here and listen for a connection
Socket s1 = s.accept();
// Get output stream associated with the socket
OutputStream s1out = s1.getOutputStream();
DataOutputStream dos = new DataOutputStream(s1out);
// Send your string!
dos.writeUTF("Server say: Hello! you come here "+ ++i + "times!");
// Close the connection, but not the server socket
dos.close();
s1.close();
} catch (IOException e) {
// ignore
}
}
}
}
|
现在java版MM越来越多了,呵呵
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。