-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGoCache.java
32 lines (27 loc) · 1.17 KB
/
GoCache.java
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
import java.io.*;
import java.net.*;
public class GoCache {
public static void main(String[] args) throws IOException {
String hostname = "http://localhost";
String port = "8080";
URL url = new URL(hostname + ":" + port + "/cache/Hello");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestMethod("PUT");
OutputStream outputStream = connection.getOutputStream();
outputStream.write("World".getBytes());
connection.getInputStream();
url = new URL(hostname + ":" + port + "/cache/Hello");
connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestMethod("GET");
StringBuffer value = new StringBuffer();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line;
while ((line = bufferedReader.readLine()) != null) {
value.append(line);
}
bufferedReader.close();
System.out.println(String.format("Hello = %s ", value.toString()));
}
}