본문 바로가기

JAVA66

[Javascript] 요소의 크기와 뷰포트에 대한 위치를 반환 with 팝업창(popup) const element = document.querySelector('#some-element'); // 요소를 선택const rect = element.getBoundingClientRect(); // 요소의 위치와 크기 정보console.log(rect.width); // 요소의 너비console.log(rect.height); // 요소의 높이console.log(rect.top); // 요소의 상단 경계로부터의 거리console.log(rect.right); // 요소의 오른쪽 경계로부터의 거리console.log(rect.bottom); // 요소의 하단 경계로부터의 거리console.log(rect.left); // 요소의 왼쪽 경계로부터의 거리  getBoundingClient.. 2024. 8. 5.
DB에서 가져올때 엔터키 정규식 변환 JAVAString text = Object.DB게시글 연결메소드();text.replaceAll("\n", "") JS 2024. 7. 18.
[Java] SimpleJson이용하여 String객체 JSON객체로 파싱하기 import org.json.simple.JSONArray;import org.json.simple.JSONObject;import org.json.simple.parser.JSONParser;import java.util.List;import java.util.ArrayList;String result = "JSON형식 데이터";JSONParser jsonParser = new JSONParser();JSONObject jsonObject = (JSONObject) jsonParser.parse(result);JSONArray jsonArray = (JSONArray) jsonObject.get("result");for (int i = 0; i 2024. 7. 5.
List 객체 JSON으로 가져오기 JAVAPathFinderVO pathFinderVO = new PathFinderVO();pathFinderVO.setSmrtcnterId(smrtCnterVO.getSmrtcnterId());pathFinderVO = pathFinderService.selectPathFinder(pathFinderVO);// JSON 변환 (Jackson 라이브러리 사용)ObjectMapper objectMapper = new ObjectMapper();String pathFinderVOJson = objectMapper.writeValueAsString(pathFinderVO);model.addAttribute("pathFinderVOJson", pathFinderVOJson); JSPvar pathFinderVO.. 2024. 7. 3.
디컴파일.exe 2024. 6. 17.
년월일 생성 selectBox생성 자바 Calendar calNow = Calendar.getInstance(); int year = Integer.parseInt(UscComUtil.getDateFormat(calNow.getTime(),"yyyy")); List years = new ArrayList(); for(int i=0; i times = new ArrayList(); for(int i=0; i minutes = new ArrayList(); for(int i=0; i  jsp 년도선택 ${year} 시간선택 ${time}시 2024. 6. 14.