일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |
- JPA
- analytics4
- docker
- API
- Python
- SQL
- db종류
- 르세라핌
- 데이터내보내기
- mysql
- 애널리틱스4
- PostgreSQL
- codeium
- java
- 오블완
- ANTIFRAGILE
- pat발급
- IntelliJ
- DBMS
- oracle
- 명령어
- git pat
- mssql
- macvlan
- 11월순위
- 자바
- spring
- 티스토리챌린지
- gtihub
- Today
- Total
목록전체 글 (303)
hanker
@Override public void onClick(View v) { switch(v.getId()) { case R.id.btn1: Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.hanke-r.tistory.com")); startActivity(intent); break; case R.id.btn2: ... } } App 화면에 버튼을 만들어 URL 이동을 하고 싶은 경우 Uri.parse("") 안에 이동하고싶은 URL 넣어서 startActivity 메서드 실행
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int m = sc.nextInt(); int n = sc.nextInt(); int sum = 0; int min = 0; for(int i = n ; i >= m ; i--){ boolean flag = true; if(i < 2){ flag = false; } for(int j = 2 ; j
Security 설정파일에 추가하면 밑의 코드를 추가하면 @Override public void configure(WebSecurity webSecurity) throws Exception{ webSecurity.ignoring() .requestMatchers(PathRequest.toStaticResources().atCommonLocations()); } 밑에 설정된 경로대로 static/ 하위폴더들 무시
List.of를 사용하려고 하는데, 오류가 발생했다. 내용을 보면 List안에 of메소드를 찾을 수 없다고 나오는데, 확인해보니 List.of는 java9 버전 이상부터 사용가능하다. 그래서 대신 Arrays.asList를 사용해서 처리했다. Arrays.asList와 List.of의 차이점은 분명히 있지만 어떤 방식에 사용하냐에 따라 다르다고 한다. 그래서 차이점을 찾아보고 알맞게 사용하시길..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int cnt = 0; for(int i = 0 ; i < n ; i++){ int minor = sc.nextInt(); boolean flag = true; if(minor < 2){ flag = false; } for(int j = 2 ; j
윈도우에서 directory를 확인하기 위해서는 "dir" 이라고 해야한다. 기존에 유/리눅스에서 사용하던 ls명령어가 더 편한느낌이라 항상 윈도우에서도 확인할 때 ls를 쓰곤한다. 그래서 그냥 명령어를 변경하기로 결정했다. dir → ls 아주 쉽게 변경
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i = 0 ; i < N ; i++){ int x = sc.nextInt(); int y = sc.nextInt(); int dist = y - x; int max = (int)Math.sqrt(dist); if(max == Math.sqrt(dist)){ System.out.println(max * 2 - 1); } else if (dist
1. TestVO 작성 @Data public class TestVO implements Serializable { private static final long serialVersionUID = 9203343211087202441L; @NotEmpty(message = "반드시 값이 존재하고 길이 혹은 크기가 0보다 커야합니다.") @Size(max = 100) private String test; } 2. TestController 작성 @Controller @RequestMapping("/test") public class TestController { @GetMapping public String testView(TestVO testVO){ return "test/testInput"; } @Pos..
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); BigInteger A = sc.nextBigInteger(); BigInteger B = sc.nextBigInteger(); System.out.println(A.add(B)); } }
- 배열의 크기보다 인덱스가 크거나 음수가 들어갔을때 나오는 오류 * 인덱스가 클 경우 public class ToStringTest { public static void main(String[] args) { // ar[4] = ar[0], ar[1], ar[2], ar[3] int[] ar = new int[4]; // ar에 값 넣기 for(int i = 0 ; i < ar.length ; i++){ ar[i] = i; } System.out.println(ar[4]); } } 가끔 실수할 때가 있다. 배열 인덱스는 0 ~ n-1