端口表示计算机上一个程序的进程:
--不同的进程有不同的端口号!来区分软件
--被规定0~65535
--TCP.UDP :65535*2 tcp :80 , udp: 80 单个协议下端口号不能冲突
--端口分类
--公有端口 0~1023
--HTTP :80
--HTTPS : 443
--FTP :21
--Telent :23
--程序注册端口 :1024~49151 ,分配用户或者程序
--Tmocat :8080
--MySQL :3306
--oracle :1521
--动态,私有 :49152~65535
netstat -ano #查看所有端口
netstat -ano|findstr "5900"
TCP
客户端
1.连接服务器Socket
2.发送消息
//客户端
public class TcpClientDemo1 {
public static void main(String[] args) {
Socket socket = null;
OutputStream os = null;
try {
//1.要知道服务端的地址和端口号
InetAddress serverIP = InetAddress.getByName("127.0.0.1");
int port = 9999;
//2.创建一个socket连接
socket = new Socket(serverIP,port);
//3.发送消息 IO流
os =socket.getOutputStream();
os.write("你好,欢迎学习JAVA".getBytes());
} catch (Exception e) {
e.printStackTrace();
}finally {
if (os!=null) {
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (socket!=null) {
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
服务端
1.建立服务的端口 ServerScoket
2.等待用户的链接 accept
3. 接受用户的消息
package TestIP;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.ServerSocket;
import java.net.Socket;
//服务端
public class TcpServerDemo2 {
public static void main(String[] args) {
ServerSocket serverSocket = null;
Socket socket = null;
InputStream is = null;
ByteArrayOutputStream baos = null;
try {
//1.得有一个地址
serverSocket = new ServerSocket(9999);
//2.等待客户端连接过来
socket = serverSocket.accept();
//3.读取客户端的消息
is = socket.getInputStream();
//管道流
baos = new ByteArrayOutputStream();
byte[] buffer =new byte[1024];
int length;
while ((length = is.read(buffer))!=-1){
baos.write(buffer,0,length);
}
System.out.println(baos.toString());
//关闭资源
} catch (IOException e) {
e.printStackTrace();
}
if (baos!= null){
try {
baos.close();
} catch (IOException e) {
e.printStackTrace();
}
}if (is!= null){
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}if (socket!= null){
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}if (serverSocket!= null){
try {
serverSocket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}