-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchapter.java.net.xml
More file actions
445 lines (391 loc) · 14 KB
/
chapter.java.net.xml
File metadata and controls
445 lines (391 loc) · 14 KB
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<?xml version="1.0" encoding="UTF-8"?>
<chapter id="index"><?dbhtml dir="net" ?>
<title>Network</title>
<para>Java 网络相关操作</para>
<section id="URL">
<title>URL</title>
<section>
<title>获取路径/文件名</title>
<programlisting>
<![CDATA[
package cn.netkiller.test;
import java.net.URL;
public class Test {
public Test() {
}
public static void main(String[] args) throws Exception {
// url object
URL url = null;
try {
// create a URL
url = new URL("http://oss.netkiller.cn/book/d730dfb8-1ef2-49af-a728-ff68dc7c9f6e/3.mp3");
// display the URL
System.out.println("URL=" + url);
// display the Path
System.out.println("Path=" + url.getPath());
System.out.println("File=" + url.getFile());
System.out.println("directory=" + url.getFile().substring(0, url.getFile().lastIndexOf("/")));
System.out.println("Filename=" + url.getFile().substring(url.getFile().lastIndexOf("/") + 1));
}
// if any error occurs
catch (Exception e) {
// display the error
System.out.println(e);
}
}
}
]]>
</programlisting>
</section>
<section>
<title>打开 URL</title>
<programlisting>
<![CDATA[
import java.net.*;
import java.io.*;
public class URLReader {
public static void main(String[] args) throws Exception {
URL url = new URL("http://www.netkiller.cn/");
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();
}
}
]]>
</programlisting>
</section>
</section>
<section id="URLConnection">
<title>URLConnection</title>
<programlisting>
<![CDATA[
URL url = new URL("https://www.netkiller.cn");
URLConnection connection = url.openConnection();
System.out.println(connection.getContentType());
System.out.println(connection.getContentLength());
System.out.println(connection.getContentEncoding());
System.out.println(connection.getDate());
System.out.println(connection.getExpiration());
System.out.println(connection.getLastModified());
]]>
</programlisting>
<para></para>
<programlisting>
<![CDATA[
URL url = new URL("https://www.netkiller.cn");
URLConnection connection = url.openConnection();
try (InputStream in = connection.getInputStream();) {
ByteArrayOutputStream output = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len = -1;
while ((len = in.read(buffer)) != -1) {
output.write(buffer, 0, len);
}
System.out.println(new String(output.toByteArray()));
} catch (IOException e) {
e.printStackTrace();
}
]]>
</programlisting>
</section>
<section id="HttpURLConnection">
<title>HttpURLConnection</title>
<section>
<title>GET 请求</title>
<para>GET 请求</para>
<para>BufferedReader 方案</para>
<programlisting>
<![CDATA[
package cn.netkiller.test;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
@Data
@Slf4j
public class Test {
public static void main(String[] args) throws IOException {
try {
// 访问URL地址的
URL url = new URL("https://www.netkiller.cn/index.html");
// java.net.HttpURLConnection 网络访问对象
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 设置是否向HttpURLConnection输出
connection.setDoOutput(false);
// 设置是否从HttpUrlConnection读入
connection.setDoInput(true);
// 设置请求方式
connection.setRequestMethod("GET");
// 设置是否使用缓存
connection.setUseCaches(true);
// 否应该自动执行 HTTP 重定向
connection.setInstanceFollowRedirects(true);
// 设置超时时间
connection.setConnectTimeout(3000);
// 连接
connection.connect();
// 如果返回值正常,数据在网络中是以流的形式得到服务端返回的数据
String msg = "";
// 得到响应状态码的返回值
if (connection.getResponseCode() == 200) { // 正常响应
// 从流中读取响应信息
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line = null;
while ((line = reader.readLine()) != null) { // 循环从流中读取
msg += line + "\n";
}
reader.close(); // 关闭流
}
// 断开连接,释放资源
connection.disconnect();
// 显示响应结果
System.out.println(msg);
} catch (IOException e) {
e.printStackTrace();
}
}
}
]]>
</programlisting>
<para>ByteArrayOutputStream 方案</para>
<programlisting>
<![CDATA[
package cn.netkiller.test;
import io.netty.handler.codec.http.HttpMethod;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.charset.StandardCharsets;
@Data
@Slf4j
public class Test {
public static void main(String[] args) throws IOException {
try {
// 访问URL地址的
URL url = new URL("https://www.netkiller.cn/index.html");
// java.net.HttpURLConnection 网络访问对象
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 设置是否向HttpURLConnection输出
connection.setDoOutput(false);
// 设置是否从HttpUrlConnection读入
connection.setDoInput(true);
// 设置请求方式
connection.setRequestMethod(HttpMethod.GET.name());
// 设置是否使用缓存
connection.setUseCaches(true);
// 否应该自动执行 HTTP 重定向
connection.setInstanceFollowRedirects(true);
// 设置超时时间
connection.setConnectTimeout(3000);
connection.setReadTimeout(60000);
// 连接
connection.connect();
// 如果返回值正常,数据在网络中是以流的形式得到服务端返回的数据
String msg = "";
// 定义一个临时字节输出流
ByteArrayOutputStream baos = new ByteArrayOutputStream();
// 得到响应状态码的返回值
if (connection.getResponseCode() == 200) { // 正常响应
// 获取输入流
InputStream inputStream = connection.getInputStream();
try {
// 开始读取数据
byte[] buffer = new byte[256];
int len = 0;
while ((len = inputStream.read(buffer)) > 0) {
baos.write(buffer, 0, len);
}
msg = baos.toString(StandardCharsets.UTF_8);
} finally {
// 关闭输入、输出流
inputStream.close();
baos.close();
}
}
// 断开连接,释放资源
connection.disconnect();
// 显示响应结果
System.out.println(msg);
} catch (IOException e) {
e.printStackTrace();
}
}
}
]]>
</programlisting>
</section>
<section>
<title>POST 请求</title>
<programlisting>
<![CDATA[
package cn.netkiller.test;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
@Data
@Slf4j
public class Test {
public static void main(String[] args) throws IOException {
try {
// 获取访问URL地址
URL url = new URL("https://www.netkiller.cn/test/");
// 创建HttpURLConnection对象
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// POST 请求方式
connection.setRequestMethod("POST");
// 设置连接超时时间
connection.setConnectTimeout(3000);
// 设置是否向 HttpUrlConnection 输出,对于post请求,参数要放在 http 正文内,因此需要设为true,默认为false。
connection.setDoOutput(true);
// 设置是否从 HttpUrlConnection读入,默认为true
connection.setDoInput(true);
// 设置是否使用缓存
connection.setUseCaches(false);
// 设置此 HttpURLConnection 实例是否应该自动执行 HTTP 重定向
connection.setInstanceFollowRedirects(true);
// 设置使用标准编码 application/x-www-form-urlencoded 格式参数编码
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
// 添加 HTTP HEAD 中的一些参数。
connection.setRequestProperty("Connection", "Keep-Alive");
// 连接
connection.connect();
// POST 参数
String params = "username=neo&password=netkiller";
OutputStream out = connection.getOutputStream();
out.write(params.getBytes());
out.flush();
out.close();
// 从连接中读取响应信息
String msg = "";
int code = connection.getResponseCode();
if (code == 200) {
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
msg += line + "\n";
}
reader.close();
}
// 断开连接
connection.disconnect();
// 处理结果
System.out.println(msg);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
]]>
</programlisting>
</section>
<section>
<title>POST JSON</title>
<programlisting>
<![CDATA[
package cn.netkiller.test;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
@Data
@Slf4j
public class Test {
public static void main(String[] args) throws IOException {
try {
// 获取访问URL地址
URL url = new URL("https://www.netkiller.cn/test/");
// 创建HttpURLConnection对象
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// POST 请求方式
connection.setRequestMethod("POST");
// 设置连接超时时间
connection.setConnectTimeout(3000);
// 设置是否向 HttpUrlConnection 输出,对于post请求,参数要放在 http 正文内,因此需要设为true,默认为false。
connection.setDoOutput(true);
// 设置是否从 HttpUrlConnection读入,默认为true
connection.setDoInput(true);
// 设置是否使用缓存
connection.setUseCaches(false);
// 设置此 HttpURLConnection 实例是否应该自动执行 HTTP 重定向
connection.setInstanceFollowRedirects(true);
// 设置使用 JSON 编码 application/json 格式参数编码
connection.setRequestProperty("Content-Type", "application/json");
// 添加 HTTP HEAD 中的一些参数。
connection.setRequestProperty("Connection", "Keep-Alive");
// 连接
connection.connect();
// POST 参数
String jsonString = "{}";
OutputStream out = connection.getOutputStream();
out.write(jsonString.getBytes());
out.flush();
out.close();
// 从连接中读取响应信息
String msg = "";
int code = connection.getResponseCode();
if (code == 200) {
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line;
while ((line = bufferedReader.readLine()) != null) {
msg += line + "\n";
}
bufferedReader.close();
}
// 断开连接
connection.disconnect();
// 处理结果
System.out.println(msg);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
]]>
</programlisting>
</section>
</section>
<section id="InetAddress">
<title>获取IP地址何机器名</title>
<para>改变java.io.tmpdir的默认值</para>
<programlisting>
<![CDATA[
@GetMapping("/host")
public ResponseEntity<String> host() {
try {
InetAddress addr = InetAddress.getLocalHost();
String hostAddress = addr.getHostAddress().toString();
String hostName = addr.getHostName().toString();
String tmp = String.format("%s: %s", hostAddress, hostName);
return ResponseEntity.ok(tmp);
} catch (Exception e) {
return ResponseEntity.ok(e.toString());
}
}
]]>
</programlisting>
</section>
</chapter>