Skip to content

Instantly share code, notes, and snippets.

View happygrammer's full-sized avatar

jinwook happygrammer

View GitHub Profile
@happygrammer
happygrammer / http-status-code.java
Last active November 21, 2020 16:13
HTTP STATUS CODE List from Java
public class Main {
private static String getCode(int code) {
switch (code) {
case 100:
return "CONTINUE";
case 101:
return "SWITCHING_PROTOCOLS";
case 102: