剪不断,理还乱,是离愁。别是一般滋味在心头。

——李煜《相见欢》

Java基础之网络编程

1. 网络编程概述

  1. Java是 Internet 上的语言,它从语言级上提供了对网络应用程序的支持,程序员能够很容易开发常见的网络应用程序。
  2. Java提供的网络类库,可以实现无痛的网络连接,联网的底层细节被隐藏在 Java 的本机安装系统里,由 JVM 进行控制。并且 Java 实现了一个跨平台的网络库, 程序员面对的是一个统一的网络编程环境。
  3. 网络基础
    1. 计算机网络:
      • 把分布在不同地理区域的计算机与专门的外部设备用通信线路互连成一个规模大、功能强的网络系统,从而使众多的计算机可以方便地互相传递信息、共享硬件、软件、数据信息等资源。
    2. ==网络编程的目的:==
      • 直接或间接地通过网络协议与其它计算机实现数据交换,进行通讯。
    3. ==网络编程中有两个主要的问题:==
      • 如何准确地定位网络上一台或多台主机;定位主机上的特定的应用
      • 找到主机后如何可靠高效地进行数据。

2. 网络通信要素概述

如何实现网络中的主机互相通信

  1. 通信双方地址
    • IP地址
    • 端口号
  2. 一定的规则(即:网络通信协议。有两套参考模型)
    • OSI参考模型:模型过于理想化,未能在因特网上进行广泛推广。
    • TCP/IP参考模型(或TCP/IP协议):事实上的国际标准。
    • image-20201123202428788

image-20201123202457426

3. 通信要素—IP和端口号

3.1 IP地址—InetAddress

==唯一的标识 Internet 上的计算机(通信实体)==

  1. 本地回环地址(hostAddress):127.0.0.1
    • 主机名(hostName):localhost
  2. IP地址分类方式一:IPV4 和 IPV6
    1. IPV4:4个字节组成,4个0-255。大概42亿,30亿都在北美,亚洲4亿。2011年初已经用尽。以点分十进制表示,如192.168.0.1
    2. IPV6:128位(16个字节),写成8个无符号整数,每个整数用四个十六进制位表示,数之间用冒号(:)分开,如:3ffe:3201:1401:1280:c8ff:fe4d:db39:1984
  3. IP地址分类方式二: 公网地址( 万维网使用)和 私有地址( 局域网使用)
    1. 192.168.开头的就是私有址址,范围即为192.168.0.0–192.168.255.255。专门为组织机构内部使用
  4. 特点:不易记忆。

3.2 端口号

==~端口号标识正在计算机上运行的进程(程序)==

  1. 不同的进程有不同的端口号
  2. 被规定为一个 16 位的整数 0~65535。
  3. 端口分类:
    1. 公认端口:0~1023。被预先定义的服务通信占用(如:HTTP占用端口80,FTP占用端口21,Telnet占用端口23)
    2. 注册端口:1024~49151。分配给用户进程或应用程序。(如:Tomcat占用端口8080,MySQL占用端口3306,Oracle占用端口1521等)。
    3. 动态/ 私有端口:49152~65535。
  4. 端口号与IP 地址的组合得出一个网络套接字:Socket。

image-20201123203418067

3.3 InetAddress类

  1. Internet上的主机有两种方式表示地址:

    • 域名(hostName):www.atguigu.com

    • IP 地址(hostAddress):202.108.35.210

  2. InetAddress类主要表示IP地址,两个子类:Inet4Address、Inet6Address

  3. InetAddress 类对象含有一个 Internet 主机地址的域名和IP地址:www.atguigu.com 和 202.108.35.210。

  4. 域名容易记忆,当在连接网络时输入一个主机的域名后,域名服务器(DNS)负责将域名转化成IP地址,这样才能和主机建立连接。——域名解析。

  5. image-20201123204958736

  6. InetAddress 类没有提供公共的构造器,而是提供 了 如下几个 静态方法来获取InetAddress 实例

    1. public static InetAddress getLocalHost()。
    2. public static InetAddress getByName(String host)
    3. InetAddress 提供了如下几个常用的方法
      1. public String getHostAddress() :返回 IP 地址字符串(以文本表现形式)。
      2. public String getHostName() :获取此 IP 地址的主机名
      3. public boolean isReachable(int timeout):测试是否可以达到该地址
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* @Date 2020/11/23 20:38
* @Version 10.21
* @Author DuanChaojie
*/
public class InetAddressTest {

public static void main(String[] args) {
try {

// 类似于File file = new File("hello.txt")
InetAddress inet1 = InetAddress.getByName("106.15.72.229");
System.out.println("inet1 = " + inet1);

InetAddress inet2 = InetAddress.getByName("www.itbuild.cn");
System.out.println("inet2 = " + inet2);

InetAddress inet3 = InetAddress.getByName("127.0.0.1");
System.out.println("inet3 = " + inet3);

// 获得本地ip
InetAddress inet4 = InetAddress.getLocalHost();
System.out.println("inet4 = " + inet4);

// getHostName()
String hostName = inet2.getHostName();
System.out.println("hostName = " + hostName);
// getHostAddress()
String hostAddress = inet2.getHostAddress();
System.out.println("hostAddress = " + hostAddress);

} catch (UnknownHostException e) {
e.printStackTrace();
}
}
}

4. 通信要素—网络通信协议

  1. 网络通信协议
    • 计算机网络中实现通信必须有一些约定,即通信协议,对速率、传输代码、代码结构、传输控制步骤、出错控制等制定标准。
  2. 问题:网络协议太复杂
    • 计算机网络通信涉及内容很多,比如指定源地址和目标地址,加密解密,压缩解压缩,差错控制,流量控制,路由控制,如何实现如此复杂的网络协议呢?
  3. 通信协议分层的思想
    • 在制定协议时,把复杂成份分解成一些简单的成份,再将它们复合起来。最常用的复合方式是层次方式,即同层间可以通信、上一层可以调用下一层,而与再下一层不发生关系。各层互不影响,利于系统的开发和扩展。
  4. TCP/IP 协议簇
    1. 传输层协议中有两个非常重要的协议:
      • 传输控制协议TCP(Transmission Control Protocol)
      • 用户数据报协议UDP(User Datagram Protocol)。
    2. TCP/IP 以其两个主要协议:传输控制协议(TCP) 和网络互联协议(IP)而得名,实际上是一组协议,包括多个具有不同功能且互为关联的协议。
    3. IP(Internet Protocol)协议是网络层的主要协议,支持网间互连的数据通信。
    4. TCP/IP协议模型从更实用的角度出发,形成了高效的四层体系结构,即物理链路层、IP 层、传输层和应用层。

4.1 TCP 协议

  • 使用TCP协议前,须先建立TCP连接,形成传输数据通道。
  • 传输前,采用“ 三次握手”方式,点对点通信,是可靠的。
  • TCP协议进行通信的两个应用进程:客户端、服务端。
  • 在连接中可进行大数据量的传输。
  • 传输完毕,需释放已建立的连接,效率低。

4.2 UDP 协议

  • 将数据、源、目的封装成数据包,不需要建立连接。
  • 每个数据报的大小限制在64K内。
  • 发送不管对方是否准备好,接收方收到也不确认,故是不可靠的
  • 可以广播发送
  • 发送数据结束时无需释放资源,开销小,速度快

4.3 三次握手

image-20201123210208647

4.4 四次挥手

image-20201123210221238

4.5 Socket

  1. 利用套接字(Socket)开发网络应用程序早已被广泛的采用,以至于成为事实上的标准。
  2. 网络上具有唯一标识的IP地址和端口号组合在一起才能构成唯一能识别的标识符套接字。
  3. 通信的两端都要有Socket,是两台机器间通信的端点。
  4. 网络通信其实就是Socket间的通信。
  5. Socket允许程序把网络连接当成一个流,数据在两个Socket间通过IO传输。
  6. 一般主动发起通信的应用程序属客户端,等待通信请求的为服务端。
  7. Socket分类:
    1. 流套接字(stream socket):使用TCP提供可依赖的字节流服务
    2. 数据报套接字(datagram socket):使用UDP提供“尽力而为”的数据报服务

image-20201123211103827

5. TCP网络编程

Java语言的基于套接字Socket编程分为服务端编程和客户端编程,其通信模型如图所示:

image-20201123211647132

5.1 客户端Socket

客户端Socket 的工作过程包含以下四个基本的步骤 :

  1. 创建 Socket :根据指定服务端的 IP 地址或端口号构造 Socket 类对象。若服务器端响应,则建立客户端到服务器的通信线路。若连接失败,会出现异常。
  2. 打开连接到 Socket 的输入/ 出流: 使用 getInputStream()方法获得输入流,使用getOutputStream()方法获得输出流,进行数据传输。
  3. 对按照一定的协议对 Socket 进行读/ 写操作:通过输入流读取服务器放入线路的信息(但不能读取自己放入线路的信息),通过输出流将信息写入线程。
  4. 关闭 Socket: 断开客户端到服务器的连接,释放线路。

客户端程序可以使用Socket类创建对象, 创建的同时会自动向服务器方发起连接。Socket的构造器是:

  1. Socket(String host,int port)throws UnknownHostException,IOException:向服务器(域名是host。端口号为port)发起TCP连接,若成功,则创建Socket对象,否则抛出异常。
  2. Socket(InetAddress address,int port)throws IOException:根据InetAddress对象所表示的IP地址以及端口号port发起连接。

5.2 服务端Socket

服务器 程序的工作过程包含以下四个基本的 步骤:

  1. 调用 ServerSocket(int port) : 创建一个服务器端套接字,并绑定到指定端口上。用于监听客户端的请求。
  2. 调用 accept(): 监听连接请求,如果客户端请求连接,则接受连接,返回通信套接字对象。
  3. 调用该Socket 类对象的 getOutputStream() 和 getInputStream ():获取输出流和输入流,开始网络数据的发送和接收。
  4. 关闭ServerSocket 和Socket 对象:客户端访问结束,关闭通信套接字。

服务器建立 ServerSocket 对象

  1. ServerSocket 对象负责等待客户端请求建立套接字连接,类似邮局某个窗口中的业务员。也就是说, 服务器必须事先建立一个等待客户请求建立套接字的连接的ServerSocket 对象。
  2. 所谓“接收”客户的套接字请求,就是accept()方法会返回一个 Socket 对象

5.3 练习一

客户端发送内容给服务端,服务端将内容打印到控制台上

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/**
* @Date 2020/11/23 21:32
* @Version 10.21
* @Author DuanChaojie
*/
public class TCPTest1 {

/**
* 客户端
*/
@Test
public void client(){
Socket socket = null;
OutputStream os = null;
try {
// 1.创建Socket对象,指明服务器端的ip和端口号
InetAddress inetAddress =InetAddress.getByName("127.0.0.1");
socket = new Socket(inetAddress,5555);
//2.获取一个输出流,用于输出数据
os = socket.getOutputStream();
//3.写出数据的操作
os.write("你好我是客户端".getBytes());


} catch (IOException e) {
e.printStackTrace();
}finally {
//4.资源的关闭
if (os != null){
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (socket != null){
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}

}
}

/**
* 服务端
*/
@Test
public void server(){
ServerSocket serverSocket = null;
Socket socket = null;
InputStream is = null;
ByteArrayOutputStream bos = null;
try {
//1.创建服务器端的ServerSocket,指明自己的端口号
serverSocket = new ServerSocket(5555);
//2.调用accept()表示接收来自于客户端的socket
socket = serverSocket.accept();
//3.获取输入流
is = socket.getInputStream();

//不建议这样写,可能会有乱码
//byte[] buffer = new byte[1024];
//int len = 0;
//while((len = is.read(buffer)) != -1){
// String str = new String(buffer,0,len);
// System.out.print(str);
//}

bos = new ByteArrayOutputStream();
byte[] buffer = new byte[5];
int len = 0;
while ((len = is.read(buffer)) != -1){
bos.write(buffer,0,len);
}

System.out.println(bos.toString());
System.out.println("收到了来自于:" + socket.getInetAddress().getHostAddress() + "的数据");

} catch (IOException e) {
e.printStackTrace();
}finally {
//5.关闭资源
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();
}
}
}
}
}

5.4 练习二

客户端发送文件给服务端,服务端将文件保存在本地。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/**
* @Date 2020/11/23 21:55
* @Version 10.21
* @Author DuanChaojie
*/
public class TCPTest2 {
/**
* 客户端
*/
@Test
public void client(){
Socket socket = null;
OutputStream os = null;
FileInputStream fis = null;
try {
InetAddress inetAddress = InetAddress.getByName("127.0.0.1");
socket = new Socket(inetAddress, 5555);

os = socket.getOutputStream();
File file = new File("a.txt");
fis = new FileInputStream(file);

byte[] buffer = new byte[1024];
int len;
while ((len = fis.read(buffer)) != -1){
os.write(buffer,0,len);
}
} catch (IOException e) {
e.printStackTrace();
}finally {
if (fis != null){
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}

if (os != null){
try {
os.close();
} catch (Exception e) {
e.printStackTrace();
}
}

if (socket != null){
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

/**
* 服务端
*/
@Test
public void server(){
ServerSocket ss = null;
Socket socket = null;
InputStream is = null;
FileOutputStream fos = null;
try {
ss = new ServerSocket(5555);
socket = ss.accept();
is = socket.getInputStream();

File file = new File("b.txt");
fos = new FileOutputStream(file);

byte[] buffer = new byte[1024];
int len;
while ((len = is.read(buffer)) != -1){
fos.write(buffer,0,len);
}
} catch (IOException e) {
e.printStackTrace();
}finally {

if (fos != null){
try {
fos.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 (ss != null){
try {
ss.close();
} catch (IOException e) {
e.printStackTrace();
}
}

}

}

}

5.5 练习三

从客户端发送文件给服务端,服务端保存到本地。并返回“发送成功”给客户端。并关闭相应的连接。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/**
* @Date 2020/11/24 17:00
* @Version 10.21
* @Author DuanChaojie
*/
public class TCPTest3 {


@Test
public void client() {
Socket socket = null;
OutputStream os = null;
FileInputStream fis = null;
InputStream is = null;
ByteArrayOutputStream baos = null;
try {
InetAddress inetAddress = InetAddress.getByName("127.0.0.1");
socket = new Socket(inetAddress, 5555);

os = socket.getOutputStream();
File file = new File("a.txt");
fis = new FileInputStream(file);

byte[] buffer = new byte[1024];
int len;
while ((len = fis.read(buffer)) != -1) {
os.write(buffer, 0, len);
}

// 关闭数据的输出
socket.shutdownOutput();
System.out.println("文件传输完成");

// 接收来自于服务器端的数据,并显示到控制台上
is = socket.getInputStream();
baos = new ByteArrayOutputStream();
while ((len = is.read(buffer)) != -1) {
baos.write(buffer, 0, len);
}

System.out.println(baos.toString());

} catch (IOException e) {
e.printStackTrace();
} finally {

if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (os != null) {
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (socket != null) {
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (is != null) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (baos != null) {
try {
baos.close();
} catch (IOException e) {
e.printStackTrace();
}
}

}


}

@Test
public void server() {
ServerSocket ss = null;
Socket socket = null;
InputStream is = null;
FileOutputStream fos = null;
OutputStream os = null;
try {
ss = new ServerSocket(5555);
socket = ss.accept();
is = socket.getInputStream();

File file = new File("b.txt");
fos = new FileOutputStream(file);

byte[] buffer = new byte[1024];
int len;

while ((len = is.read(buffer)) != -1) {
fos.write(buffer);
}

os = socket.getOutputStream();
os.write("你好,我已经收到了你发的文件!谢谢!".getBytes());
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fos != null) {
try {
fos.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 (ss != null) {
try {
ss.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (os != null) {
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

}
}

6. UDP网络编程

  1. DatagramSocketDatagramPacket 实现了基于 UDP 协议网络程序。
  2. UDP数据报通过数据报套接字 DatagramSocket 发送和接收,系统不保证UDP数据报一定能够安全送到目的地,也不能确定什么时候可以抵达。
  3. DatagramPacket 对象封装了UDP数据报,在数据报中包含了发送端的IP地址和端口号以及接收端的IP地址和端口号。
  4. UDP协议中每个数据报都给出了完整的地址信息,因此无须建立发送方和接收方的连接。如同发快递包裹一样。

6.1 DatagramSocket类的常用方法

image-20201124174730187

6.2 DatagramPacket 类的常用方法

image-20201124174813672

6.3 案例

流 程:

  1. DatagramSocket与DatagramPacket
  2. 建立发送端,接收端
  3. 建立数据包
  4. 调用Socket的发送、接收方法
  5. 关闭Socket

发送端与接收端是两个独立的运行程

  1. 在接收端,要指定监听的端口
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* @Date 2020/11/24 17:34
* @Version 10.21
* @Author DuanChaojie
*/
public class UDPTest1 {

@Test
public void sender() {
DatagramSocket socket = null;
try {
socket = new DatagramSocket();

String str = "我是UDP的sender";
byte[] data = str.getBytes();
InetAddress inet = InetAddress.getByName("127.0.0.1");
DatagramPacket packet = new DatagramPacket(data, 0, data.length, inet, 9090);

socket.send(packet);
} catch (IOException e) {
e.printStackTrace();
} finally {
if (socket != null) {
try {
socket.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}

@Test
public void receiver() {

DatagramSocket socket = null;
try {
socket = new DatagramSocket(9090);
byte[] buffer = new byte[1024];
DatagramPacket packet = new DatagramPacket(buffer, 0, buffer.length);

socket.receive(packet);

System.out.println(new String(packet.getData(), 0, packet.getLength()));
} catch (IOException e) {
e.printStackTrace();
} finally {
if (socket != null) {
try {
socket.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}

}
}

7. URL网络编程

  1. URL(Uniform Resource Locator):统一资源定位符,它表示 Internet 上 某一资源的地址。它是一种具体的URI,即URL可以用来标识一个资源,而且还指明了如何locate这个资源。
  2. 格式:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* @Date 2020/11/24 18:24
* @Version 10.21
* @Author DuanChaojie
*/
public class URLTest1 {
public static void main(String[] args) {
try {
URL url = new URL("http://localhost:8080/examples/beauty.jpg?username=Tom");

// 获取该URL的协议名
String protocol = url.getProtocol();
System.out.println("protocol = " + protocol);

// 获取该URL的主机名
String host = url.getHost();
System.out.println("host = " + host);

// 获取该URL的端口号
int port = url.getPort();
System.out.println("port = " + port);

// 获取该URL的文件路径
String path = url.getPath();
System.out.println("path = " + path);

// 获取该URL的文件名
String file = url.getFile();
System.out.println("file = " + file);

// 获取该URL的查询名
String query = url.getQuery();
System.out.println("query = " + query);

/**
protocol = http
host = localhost
port = 8080
path = /examples/beauty.jpg
file = /examples/beauty.jpg?username=Tom
query = username=Tom
*/
} catch (MalformedURLException e) {
e.printStackTrace();
}

}
}

7.1 针对HTTP协议的URLConnection类

  1. URL的方法 openStream():能从网络上读取数据。
  2. 若希望输出数据,例如向服务器端的 CGI (公共网关接口-Common GatewayInterface-的简称,是用户浏览器和服务器端的应用程序进行连接的接口)程序发送一些数据,则必须先与URL建立连接,然后才能对其进行读写,此时需要使用URLConnection 。
  3. URLConnection:表示到URL所引用的远程对象的连接。当与一个URL建立连接时,首先要在一个 URL 对象上通过方法 openConnection() 生成对应的 URLConnection对象。如果连接过程失败,将产生IOException。
    • URL netchinaren = new URL ("http://www.atguigu.com/index.shtml");
    • URLConnectonn u = netchinaren.openConnection( );
  4. 通过URLConnection对象获取的输入流和输出流,即可以与现有的CGI程序进行交互。
    1. public Object getContent( ) throws IOException
    2. public int getContentLength( )
    3. public String getContentType( )
    4. public long getDate( )
    5. public long getLastModified( )
    6. public InputStream getInputStream( )throws IOException
    7. public OutputSteram getOutputStream( )throws IOException
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* @Date 2020/11/24 18:51
* @Version 10.21
* @Author DuanChaojie
*/
public class URLTest2 {
public static void main(String[] args) {
HttpURLConnection urlConnection = null;
InputStream is = null;
FileOutputStream fos = null;
try {
URL url = new URL("https://img-bss.csdnimg.cn/202011061645025766.png");
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.connect();

is = urlConnection.getInputStream();
fos = new FileOutputStream(new File("a.png"));
byte[] buffer = new byte[1024];
int len;
while ((len = is.read(buffer)) != -1){
fos.write(buffer,0,len);
}
System.out.println("下载完成!");
} catch (IOException e) {
e.printStackTrace();
}finally {
if (fos != null){
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (is != null) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (urlConnection != null) {
urlConnection.disconnect();
}
}
}
}

7.2 URI、URL和URN的区别

image-20201124184421556

8. 小结

  1. 位于网络中的计算机具有唯一的IP地址,这样不同的主机可以互相区分。
  2. 客户端-服务器是一种最常见的网络应用程序模型。服务器是一个为其客户端提供某种特定服务的硬件或软件。客户机是一个用户应用程序,用于访问某台服务器提供的服务。端口号是对一个服务的访问场所,它用于区分同一物理计算机上的多个服务。套接字用于连接客户端和服务器,客户端和服务器之间的每个通信会话使用一个不同的套接字。TCP协议用于实现面向连接的会话。
  3. Java 中有关网络方面的功能都定义在 java.net 程序包中。Java 用 InetAddress 对象表示 IP地址,该对象里有两个字段:主机名(String) 和 IP 地址(int)。
  4. 类 Socket 和 ServerSocket 实现了基于TCP协议的客户端-服务器程序。Socket是客户端和服务器之间的一个连接,连接创建的细节被隐藏了。这个连接提供了一个安全的数据传输通道,这是因为 TCP 协议可以解决数据在传送过程中的丢失、损坏、重复、乱序以及网络拥挤等问题,它保证数据可靠的传送。
  5. 类 URL 和 URLConnection 提供了最高级网络应用。URL 的网络资源的位置来同一表示Internet 上各种网络资源。通过URL对象可以创建当前应用程序和 URL 表示的网络资源之间的连接,这样当前程序就可以读取网络资源数据,或者把自己的数据传送到网络上去