Update structure for partials and examples
This commit is contained in:
parent
b1b3d6a960
commit
531ddf0721
89 changed files with 79 additions and 79 deletions
|
@ -0,0 +1,7 @@
|
|||
|
||||
socket.getOutputStream().write("GET / HTTP/1.0\r\n\r\n"
|
||||
.getBytes(Charset.forName("UTF-8")));
|
||||
byte[] buffer = new byte[4096];
|
||||
int count = socket.getInputStream().read(buffer);
|
||||
System.out.write(buffer, 0, count);
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue