목록분류 전체보기 (163)
Simple&Natural
자신의 깃허브 계정에 공개키(Public Key)를 등록하는 방법은 다음과 같습니다. 1. SSH 키 생성 ssh-keygen 입력 후 엔터 엔터 3번을 치면 SSH 키 생성 Your identification has been saved in /c/Users/SSABI/.ssh/id_rsa. : 자신의 홈 디렉토리에 id_rsa 비밀키(private key) 생성 Your public key has been saved in /c/Users/SSABI/.ssh/id_rsa.pub. : 자신의 홈 디렉토리에 id_rsa.pub 공개키(public key) 생성 2. SSH 키 복사 cd ~/.ssh 입력 후 엔터 ls -al 입력 후 엔터 (파일 목록을 확인하는 부분) cat id_rsa.pub 입력 후 아..
문제상황1 Master Brach에 있는 최신 프로젝트를 가져와 초기 빌드 시 다음과 같은 오류 발생 Could not create task ':app:minifyProdDebugWithR8'. Cannot query the value of this provider because it has no value available. ㄴ이외에도 Google Liscense 29.0.0 및 29.0.2 관련하여 Warning 발생하는 것을 확인 구글링을 통해 찾아보아도 관련 이슈가 거의 없는 상황. 해결방법 SDK Manager에서 Google Play Licensing Library 및 SDK Version 29 설치 후 정상 빌드. 문제상황2 Design editor is unavailable until a ..
자바의 String 클래스에서는 문자열을 다루는 각종 유용한 함수들을 제공하고 있다. 그 중에서 substring() 함수는 문자열의 일부를 추출할 수 있는 기능을 제공한다. substring() 함수는 startIndex, endIndex 두 가지를 인자로 가지며 startIndex만 전달해주면 해당 인덱스부터 문자열의 끝을 반환한다. Apple이라는 단어를 substring에서 사용하게 되면 다음과 같은 index 번호를 갖는다. 예제코드 val word = "apple" println(word.substring(1)) println(word.substring(2)) println(word.substring(1,3)) println(word.substring(0,3)) println(word.subs..
자바에서 문자열 format 사용시 참고하는 공식문서 자료 Formatting Numeric Print Output Earlier you saw the use of the print and println methods for printing strings to standard output (System.out). Since all numbers can be converted to strings (as you will see later in this lesson), you can use these methods to print out an arbitrary mixture of strings and numbers. The Java programming language has other methods, how..