开始...
1、服务器端:
public class ServerSocketApp {
public static void main(String[] args) {
try {
ServerSocket serverSocket = new ServerSocket(9999);
System.out.println("服务已启动");
while (true) {
Socket socket = serverSocket.accept();
System.out.println("客户" + socket.getInetAddress().getHostAddress() + "来访,");
new Thread(() -> {
try {
InputStream inputStream = socket.getInputStream();
PrintStream printStream = new PrintStream(socket.getOutputStream());
Scanner in = new Scanner(inputStream);
in.useDelimiter("\n");
while (in.hasNext()) {
String message = in.next().trim();
if (message.equalsIgnoreCase("bye")) {
String bye = new String("客户端已退出,拜拜".getBytes("UTF-8"));
System.out.println(bye);
printStream.println(bye);
} else {
printStream.println("ECHO>" + message);
}
}
} catch (IOException e) {
e.printStackTrace();
}
}).start();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
2、客户端程序:
public class ClientSocketApp {
public static void main(String[] args) throws IOException {
Socket socket = new Socket("localhost", 9999);
Scanner in = new Scanner(System.in);
Scanner inputStream = new Scanner(socket.getInputStream());
PrintStream printStream = new PrintStream(socket.getOutputStream());
in.useDelimiter("\n");
inputStream.useDelimiter("\n");
boolean b = true;
System.out.println("请输入:");
while (b) {
if (in.hasNext()) {
String message = in.next().trim();
printStream.println(message);
if (inputStream.hasNext()) {
String serverMessage = new String(inputStream.next().trim().getBytes("UTF-8"));
System.out.println(serverMessage);
}
if (message.equalsIgnoreCase("bye")) {
b = false;
}
}
}
socket.close();
}
}
3、运行
服务器
cd com/kyy/bases/socket 运行javac ServerSocketApp.java
cd classpath根目录 运行java ServerSocketApp
服务器端启动
客户端
cd com/kyy/bases/socket 运行javac ClientSocketApp.java
cd classpath根目录 运行java ClientSocketApp
遇到的问题:
如果不通过eclipse、Idea等工具,会出现 “找不到或无法加载主类 com.kyy.bases.socket.ClientSocketApp”的异常
解决办法,设置classpath=.;"JAVA_HOME"/lib
或者在cmd窗口临时设置set classpath=.;
...结束
创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。