자바 최대값 최소값 구하기 public class MaxAndMin { public static void main(String[] args) { Integer numbers = {2, 5, 10, 29, 22}; // for문 // 최대값 int maxValue = numbers[0]; for (int value : numbers) { if (value > maxValue) { maxValue = value; } } System.out.println("maxValue1 : " + maxValue); // 최소값 int minValue = numbers[0]; for (int value : numbers) { if (value < minValue) { minValue = value; } } System.o..
자바 문자열이 숫자인지 확인하기 Double.parseDouble public class NumbericYn { public static void main(String[] args) { String str = '123.0'; boolean numberYn = parseDouble(str); System.out.println(numberYn); } public static boolean numbericYn(String str) { try { Double.parseDouble(str); return true; } catch (NumberFormatException ex) { return false; } } } Apache Commons Lang public class NumbericYn { p..
도커 자주 사용하는 명령어 도커를 사용해보고 있는중인데 자주 사용하는 명령어를 잊지 않기 위해 적습니다. 추후 계속 추가할 예정입니다. 알파벳 순 명령어 내용 docker exec 실행중인 컨테이너에 명령 docker exec -it [컨테이너 name] /bin/bash 컨테이너 진입 docker images 이미지 리스트 docker ps 실행중인 컨테이너 리스트 docker ps -a 모든 컨테이너 리스트 docker restart [컨테이너 id 또는 name] 컨테이너 재시작 docker rm [컨테이너 id 또는 name] 컨테이너 삭제 docker rmi [이미지 id] 이미지 삭제 docker run [이미지명] 컨테이너 실행 docker run -d [이미지명] 컨테이너 백그라운드 실행 ..
자바 1e6f 1e-6f 1e5f 1e-5f 1e9 2e9 의미 자바 예제를 보는 도중 1e6f, 1e-6f 비슷한 값이 나오는 경우가 있어서 작성합니다. 여기서 1e6f, 1e-6f는 지수 표기(exponential notation) 또는 과학적 기수법(scientific notation)이라 부른다. 1은 계수, e는 10, 6은 e의 지수를 의미합니다. 1e6f = 1 x 10^6 = 1000000.0f 1e-6f = 1 x 10^-6 = 0.000001 1e5f = 1 x 10^5 = 100000.0f 1e-5f = 1 x 10^-5 = 0.00001 1e9 = 1 x 10^9 = 1000000000 2e9 = 2 x 10^9 = 2000000000 https://namu.wiki/w/E#s-4...
자바 배열 리스트 랜덤으로 섞기 shuffle Collections의 shuffle을 이용해서 배열, 리스트를 섞는 방법입니다. public class Shuffle { public static void main(String[] args) { Integer[] numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; List numberList = Arrays.asList(numbers); // 기본값 System.out.println(Arrays.toString(numbers); Collections.shuffle(numberList); // 변경값 System.out.println(Arrays.toString(numbers); } } 결과 [1, 2, 3, 4, 5, 6, 7, 8, ..
vue를 이용해서 검색엔진 노출 방법에 대해서 알아보겠습니다. (seo) 1. SSR (Server Side Rendering) Vue와 같이 SPA (Single Page Application)으로 개발을 하는 경우 CSR(Client Side Rendering)을 이용해서 합니다. CSR은 클라이언트에서 화면을 구성시 최초에 한번만 서버에서 전체 페이지를 가져온 후 자바스크립트로 페이지를 렌더링 하는 방식입니다. SSR은 클라이언트에서 자바스크립트를 실행하지 않고 서버에서 페이지를 생성해 클라이언트에 보내는 방식입니다. SSR 장단점 장점 - 초기 속도 빠름 (최초에 서버에서 전체를 가져오는 방식이 아니기 때문) - 검색 엔진 최적화 단점 - 서버 부하 (새로운 페이지를 매번 서버에 요청 필요) 2...
자바스크립트 시간 계산하기 (시,분 더하기 빼기) const date = new Date(); console.log(`date : ${date}`); // 시간 더하기 빼기 date.setHours(date.getHours() + 1); console.log(`시간 더하기 : ${date}`); date.setHours(date.getHours() - 1); console.log(`시간 빼기 : ${date}`); // 분 더하기 빼기 date.setMinutes(date.getMinutes() + 10); console.log(`분 더하기 : ${date}`); date.setMinutes(date.getMinutes() - 10); console.log(`분 빼기 : ${date}`);
자바스크립트 날짜 계산하기 (년,월,일 더하기 빼기) const date = new Date(); console.log(`date : ${date}`); // 연도 더하기 빼기 date.setFullYear(date.getFullYear() + 1); console.log(`연도 더하기 ${date}`); date.setFullYear(date.getFullYear() - 1); console.log(`연도 빼기 ${date}`); // 월 더하기 빼기 date.setMonth(date.getMonth() + 1); console.log(`월 더하기 ${date}`); date.setMonth(date.getMonth() - 1); console.log(`월 빼기 ${date}`); // 일 더하기 빼기..
Boolean 정렬 Boolean.compare System.out.println(Boolean.compare(true, true); System.out.println(Boolean.compare(false, false); System.out.println(Boolean.compare(true, false); System.out.println(Boolean.compare(false, true); 결과 0 0 1 -1 Boolean.compare(x, y) x == y 인 경우 0을 리턴합니다. x가 true, y가 false면 -1를 리턴합니다. x가 false, y가 true면 1를 리턴합니다.
자바 map 다중제거 Iterator Map map = new HashMap(); map.put(1, 11); map.put(2, 22); // 1번 for (Iterator it = map.entrySet().iterator(); it.hasNext();) { Map.Entry entry = it.next(); if (entry.getKey() > 0) { // 제거 it.remove(); } } // 2번 map.entrySet().removeIf(e -> { return e.getKey() > 0; }); // 2번 요약 map.entrySet().removeIf(e -> e.getKey() > 0); // 3번 Iterator it = map.keySet().iterator(); while(it...
- Total
- Today
- Yesterday
- 정렬
- 신한카드
- 자바 LocalDateTime 변환
- Javascript time to seconds
- 휴면계좌
- 실업급여
- 핸드폰
- Java LocalDateTime 변환
- 자바
- 아이폰
- 근로소득원천징수영수증 발급
- nginx 파일 업로드 크기
- 자바 소수점
- Java Date 변환
- 크린토피아
- nginx client_max_body_size
- nginx Request Entity Too Large
- 구글
- 여권
- 국민연금
- 근로소득원천징수영수증 발급 방법
- 우체국
- 자바 Date 변환
- 안드로이드
- 자바스크립트 time to seconds
- 자바 String 변환
- Java String 변환
- 근로소득원천징수영수증
- 크린토피아 가격표
- 자바 정렬
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |