Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194690
- POST방식
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194711
- 한글깨짐
- Spring MVC
- Forwarding
- webserver #WAS #ServerApp
- while문
- sendRedirect
- WAS
- 다형성 #부모타입 #자식타입
- 매핑 #
- 피그마
- 톰캣
- Request
- xml
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194709&category=questiondetail&tab=community&q=1314387
- 김영한
- Dispatcher
- GET방식
- JSON형식의 response
- 요구사항정의서
- Break
- Servlet
- CONTINUE
- 화면정의서
Archives
- Today
- Total
목록2024/04/05 (1)
Step it up now
scanner 스캐너
public class Scanner1 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("문자열을 입력하세요: "); // scanner.nextLine()가 입력한 문자열을 읽어서 str로 넣어준다 String str = scanner.nextLine(); //입력을 String으로 가져온다 System.out.println("입력한 문자열: " + str); System.out.print("정수를 입력하세요: "); int intValue = scanner.nextInt(); //입력을 int로 가져온다 System.out.println("입력한 정수: " + intV..
개인공부/java
2024. 4. 5. 11:22