Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/net/URLConnection/GetResponseCode.java
41149 views
1
/*
2
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/**
25
* @test
26
* @bug 4191815
27
* @library /test/lib
28
* @summary Check that getResponseCode doesn't throw exception if http
29
* respone code is >= 400.
30
*/
31
import java.net.*;
32
import java.io.*;
33
34
import jdk.test.lib.net.URIBuilder;
35
36
public class GetResponseCode implements Runnable {
37
38
ServerSocket ss;
39
40
/*
41
* Our "http" server to return a 404
42
*/
43
public void run() {
44
try {
45
Socket s = ss.accept();
46
47
PrintStream out = new PrintStream(
48
new BufferedOutputStream(
49
s.getOutputStream() ));
50
51
/* send the header */
52
out.print("HTTP/1.1 404 Not Found\r\n");
53
out.print("Content-Type: text/html; charset=iso-8859-1\r\n");
54
out.print("Connection: close\r\n");
55
out.print("\r\n");
56
out.print("<HTML>");
57
out.print("<HEAD><TITLE>404 Not Found</TITLE></HEAD>");
58
out.print("<BODY>The requested URL was not found.</BODY>");
59
out.print("</HTML>");
60
out.flush();
61
62
/*
63
* Sleep added to avoid connection reset
64
* on the client side
65
*/
66
Thread.sleep(1000);
67
s.close();
68
ss.close();
69
} catch (Exception e) {
70
e.printStackTrace();
71
}
72
}
73
74
GetResponseCode() throws Exception {
75
76
/* start the server */
77
ss = new ServerSocket();
78
ss.bind(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0));
79
(new Thread(this)).start();
80
81
/* establish http connection to server */
82
URL url = URIBuilder.newBuilder()
83
.scheme("http")
84
.loopback()
85
.port(ss.getLocalPort())
86
.path("/missing.nohtml")
87
.toURL();
88
89
HttpURLConnection http = (HttpURLConnection) url.openConnection(Proxy.NO_PROXY);
90
91
int respCode = http.getResponseCode();
92
93
http.disconnect();
94
95
}
96
97
public static void main(String args[]) throws Exception {
98
new GetResponseCode();
99
}
100
101
}
102
103