나만의 개발 기록
close
프로필 배경
프로필 로고

나만의 개발 기록

  • 분류 전체보기 (272)
    • backend (140)
      • 스프링 (91)
      • 코프링 (14)
      • 자바 (33)
      • 오류모음 (2)
    • frontend (33)
      • Javascript (14)
      • Jstl (2)
      • Vue (6)
      • 타임리프 (5)
      • React (4)
      • Typescript (1)
    • 데이터베이스 (4)
      • MYSQL (4)
    • native (16)
      • 안드로이드 (16)
    • DevOps (14)
      • AWS (4)
      • 젠킨스 (2)
      • Docker (2)
      • 깃허브 (1)
    • gis (26)
      • Openlayers (4)
      • LeafletJs (19)
      • 지오서버 (3)
    • 기타 (29)
      • 소프트웨어 설치 (9)
      • 자격증 (3)
      • 개발용어 (17)
    • 부동산 (0)
  • 홈
  • 태그
  • 방명록

[JAVA] 영문자 입력받아 아스키코드 출력

영문자 입력받아 아스키코드 출력 import java.io.IOException; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { Scanner scan = new Scanner(System.in); char a = scan.nextLine().charAt(0); int result = (int) a; System.out.println(result); } } 정수 입력받아 아스키코드 출력 import java.io.IOException; import java.util.Scanner; public class Main { public static void main(St..

  • format_list_bulleted backend/자바
  • · 2021. 6. 6.
  • textsms

[JAVA] 정수 진수변환

10진수 -> 2진수, 8진수, 16진수 int i = 127; String binaryString = Integer.toBinaryString(i); //2진수 String octalString = Integer.toOctalString(i); //8진수 String hexString = Integer.toHexString(i); //16진수 2진수, 8진수, 16진수 -> 10진수 import java.io.IOException; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { Scanner scan = new Scanner(System.in); String a..

  • format_list_bulleted backend/자바
  • · 2021. 6. 6.
  • textsms

[JAVA] 소수 11자리까지 반올림

import java.io.IOException; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { Scanner scan = new Scanner(System.in); Double a = scan.nextDouble(); System.out.format(String.format("%.11f", a)); } }

  • format_list_bulleted backend/자바
  • · 2021. 6. 6.
  • textsms
[JAVA] 입력된 수 그대로 출력하기

[JAVA] 입력된 수 그대로 출력하기

정수 출력 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int a = scan.nextInt(); System.out.println(a); } } -> 5를 입력하면 5가 출력됨 문자 출력 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String a = scan.next(); System.out.println(a); } } -> abc를 입력하면 a..

  • format_list_bulleted backend/자바
  • · 2021. 6. 5.
  • textsms
[JAVA] 문자열 따옴표 출력하기

[JAVA] 문자열 따옴표 출력하기

public class Main { public static void main(String[] args) { System.out.println("\'Hello\'"); } } public class Main { public static void main(String[] args) { System.out.println("\"Hello World\""); } } public class Main { public static void main(String[] args) { System.out.println("\"!@#$%^&*()\""); } } public class Main { public static void main(String[] args) { System.out.println("\"C:\\Downlo..

  • format_list_bulleted backend/자바
  • · 2021. 6. 5.
  • textsms

객체 지향 설계와 스프링

스프링 이야기에 왜 객체 지향 이야기가 나오는가? - 스프링은 다음 기술로 다형성 + OCP, DIP를 가능하게 지원 - DI(Dependency Injection) : 의존관계, 의존성 주입 - DI 컨테이너 제공 - 클라이언트 코드의 변경 없이 기능 확장 - 쉽게 부품을 교체하듯이 개발

  • format_list_bulleted backend/스프링
  • · 2021. 6. 5.
  • textsms
  • navigate_before
  • 1
  • ···
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • ···
  • 46
  • navigate_next
공지사항
전체 카테고리
  • 분류 전체보기 (272)
    • backend (140)
      • 스프링 (91)
      • 코프링 (14)
      • 자바 (33)
      • 오류모음 (2)
    • frontend (33)
      • Javascript (14)
      • Jstl (2)
      • Vue (6)
      • 타임리프 (5)
      • React (4)
      • Typescript (1)
    • 데이터베이스 (4)
      • MYSQL (4)
    • native (16)
      • 안드로이드 (16)
    • DevOps (14)
      • AWS (4)
      • 젠킨스 (2)
      • Docker (2)
      • 깃허브 (1)
    • gis (26)
      • Openlayers (4)
      • LeafletJs (19)
      • 지오서버 (3)
    • 기타 (29)
      • 소프트웨어 설치 (9)
      • 자격증 (3)
      • 개발용어 (17)
    • 부동산 (0)
최근 글
인기 글
최근 댓글
태그
  • #형변환
  • #charAt
  • #java
  • #useragent
  • #CentOS
  • #JavaScript
  • #spring
  • #jstl
  • #AJAX
  • #Linux
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바