본문 바로가기
반응형

스프링 웹 개발13

[Java] JSON 포맷(format) 제거 _ (remove '\"' from json format) [Java] JSON 포맷(format) 제거 ■ JSON format 제거 /** * JSON format 제거 */ public static String getJSONFormatClean(String s) { if (s == null) { return null; } return s.replace("\\\\/", "\\/").replace("\\\"", """).replace("\\r\\n", " ").replace("\\n", " ").replace("\\\\", "\\"); } [keyword] 자바 JSON Format 제거, 자바 json 포맷 제거, 자바 json 형식 제거, remove '\"' from json format, remove all JSON formatting (not just.. 2022. 5. 6.
[Java] 자바 모바일 여부 체크하기 _ Mobile Check [Java] 자바 모바일 여부 체크하기 _ Mobile Check ■ Java Mobile 확인하기 /** * 모바일 여부 */ public static boolean isMobileChk(HttpServletRequest req) { String ua = req.getHeader("user-agent").toLowerCase(); String[] devices = { "iphone", "ipod", "ipad", "android", "blackberry", "windows ce", "nokia", "webos", "opera mini", "sonyericsson", "opera mobi", "iemobile" }; for (String d : devices) { if (ua.contains(d)) { .. 2022. 5. 4.
[Java] URLEncoder , URLDecoder 예제 _ UnsupportedEncodingException ■ 자바 URLEncoder /** * URLEncoder * @throws UnsupportedEncodingException */ public static String getURLEncode(String url) throws UnsupportedEncodingException { if (url == null) { return null; } try { return URLEncoder.encode(url, "UTF-8"); } catch (Exception e) { return ""; } } ■ 자바 URLDecoder /** * URLDecoder * @throws UnsupportedEncodingException */ public static String getURLDecode(String url).. 2022. 5. 4.
[네이버 지도 api (3)] 다중마커, 다중 정보창 - 스프링 + 자바스크립트 [네이버 지도 api (1)] 지도 생성 후 마커 이미지 넣기 - 스프링 + 자바스크립트 (tistory.com) [네이버 지도 api (2)] 마커 클릭시 정보창 띄우기 - 스프링 + 자바스크립트 (tistory.com) [네이버 지도 api (4)] 주소를 검색해서 지도 이동하기 Geocoding (tistory.com) -- 복사할 수 있는 소스코드는 하단부에 아래 첨부했습니다 -- 복사할 수 있는 소스코드는 하단부에 아래 첨부했습니다 ▶ 네이버지도 api 연동 및 제이쿼리 CDN ▶ .jsp 지도 div 작성 width 100% height 75vh ▶ 자바스크립트 initMap() 작성 - 지역과 위/경도 데이터 담기 areaArr() 에 지역과 위/경도를 담는다. location 은 지역명, .. 2021. 7. 20.
반응형