본문 바로가기

JAVA69

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.
Date(날짜 사용) import java.util.Calendar;public class GetCurrentTime { public static void main(String[] args) { // 현재 시간 가져오기 Calendar calNow = Calendar.getInstance(); // 현재 시간 출력 int year = calNow.get(Calendar.YEAR); int month = calNow.get(Calendar.MONTH) + 1; // 월은 0부터 시작하므로 1을 더해줍니다. int day = calNow.get(Calendar.DAY_OF_MONTH); int hour = calNow.get(Calend.. 2024. 6. 14.
날짜 초로 변환하기 (DateFormat) 날짜는 ex) "20231205" 로 들어있어야함 시간은 ex) "0800" 이나 "1210" 이런식으로 들어 있어야함 //셋팅할 데이터 String getResveDe = mtgPlaceManageVO.getResveDe(); String getCheckBeginTime = timeResve.getCheckBeginTime(); String getCheckEndTime = timeResve.getCheckEndTime(); String myBeginDe = myManage.getResveImprtyBeginDe(); String myEndDe = myManage.getResveImprtyEndDe(); String myBeginTime = myManage.getResveBeginTm(); String .. 2023. 12. 5.
자바(JDBC) ojdbc6.jar라이브러리 추가 2023. 7. 8.