728x90 반응형 Study364 [flutter] Bottom Overflowed By ??? Pixels 오류 해결 해결방법Scaffold에 resizeToAvoidBottomPadding:false 를 추가하고 body를 SingleChildScrollView로 감싼다. home: Scaffold( resizeToAvoidBottomInset : false, appBar: AppBar( title: Text("Registration Page"), ), body: SingleChildScrollView( child: RegisterUserPage(), )), 출처 : https://dkswnkk.tistory.com/327 2024. 8. 24. Java Currency getDefaultFractionDigits() Method DescriptionThe Java Currency getDefaultFractionDigits() method gets the default number of this currency's fraction digits.DeclarationFollowing is the declaration for java.util.Currency.getDefaultFractionDigits() methodpublic int getDefaultFractionDigits()Learn Java in-depth with real-world projects through our Java certification course. Enroll and become a certified expert to boost your career. .. 2024. 8. 11. [ JPA ] Save 후 Id 구하기 삽입을 목적으로 vo를 save 를 이용하여 삽입했을 때 생성된 id 를 구하는 법은 아주 간단하다. repository.save( vo ).getId(); save 를 진행한 repository 가 반환 하는 것은 방금 내가 저장한 vo 에 대한 저장된 결과 이기 때문이다. 출처 : https://soobindeveloper8.tistory.com/601 2024. 8. 11. [Java] 자바 소수점 원하는 자리수 만큼 출력 자바로 문제를 풀다보면 소수점 몇째 자리까지 출력하라는 조건이 종종 나오곤 한다. double형의 두 수인 5.0과 3.0을 나눈 값을 출력하면 우측처럼 1.6666666666666667로 출력 가장 끝부분 다음 자리에서 반올림한 값이 나온다. 이 때, 소수점 세 번째 자리까지만 출력하고싶다면 어떻게 해야할까? 첫 번째. System.out.printf() 사용단순히 println()을 사용하지 말고 printf() 메소드에서 첫 번째 인자로 몇 번째 자리까지 출력할지 정해주고 출력하는 방법이다. 이 방법은 가장 단순하지만 리턴값이 나오지 않는다. 두 번째. String.format() 사용자바에서 문자열을 다루는 String 클래스는 매우 다양하게 사용될 때가 있는데 이 때가 그 중 하나이다. .. 2024. 8. 11. 이전 1 2 3 4 5 6 ··· 91 다음 728x90 반응형