목록분류 전체보기 (556)
른록노트
참고사이트https://www.w3schools.com/bootstrap/bootstrap_ref_comp_glyphs.asp
참고사이트http://bootstrapk.com/css/
var save_confirm = function () { if (confirm('저장하시겠습니까?')) { // Yes click } else { // no click} } =>confirm 함수를 사용하면된다if문은 0일때 false이고클릭을하면 값이 들어가서 true가 된다. 참고사이트http://javakorean.com/%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-alert-%EC%98%88-%EC%95%84%EB%8B%88%EC%98%A4
Since you're already using Google's Json-Simple library, you can parse the json from an InputStream like this:InputStream inputStream = ... //Read from a file, or a HttpRequest, or whatever. JSONParser jsonParser = new JSONParser(); JSONObject jsonObject = (JSONObject)jsonParser.parse( new InputStreamReader(inputStream, "UTF-8")); 참고사이트https://stackoverflow.com/questions/22461663/convert-inputst..
InputStream is; new InputStreamReader(is, Charset.forName("UTF-8")) 이렇게 UTF-8을 지정해줘야함
참고사이트http://d2.naver.com/helloworld/273788
URL-encoding : ASCII Character%20 : space%21 : !%22 : ”%23 : #%24 : $%25 : %%26 : &%27 : ‘%28 : (%29 : )%2A : *%2B : +%2C : ,%2D : –%2E : .%2F : /%30 : 0%31 : 1%32 : 2%33 : 3%34 : 4%35 : 5%36 : 6%37 : 7%38 : 8%39 : 9%3A : :%3B : ;%3C : %3F : ?%40 : @%41 : A%42 : B%43 : C%44 : D%45 : E%46 : F%47 : G%48 : H%49 : I%4A : J%4B : K%4C : L%4D : M%4E : N%4F : O%50 : P%51 : Q%52 : R%53 : S%54 : T%55 : U%..