- c언어 파일 읽기
- tzselect
- node js express install
- 디지털오션 클라우드서버 생성하기
- 클라우드서버 생성
- ubuntu node js install
- 디지털오션 서버생성하기
- C언어
- 자바 한줄씩 읽기
- java 숫자를 문자로 변환하기
- Node.js express install
- 자바 파일 한줄씩 읽기
- raspi-config
- 파이썬 반복문
- 우분투 시간변경
- express install
- 우분투 node js 설치
- mysql index 생성
- node js 버전확인
- ubuntu node js
- Python
- 디지털오션 드로플릿
- c file read
- 파이썬
- node 버전확인
- 라즈베리파이4
- index 생성
- npm버전확인
- 우분투 시간설정
- Ubuntu timezone
- Today
- Total
목록전체 글 (36)
호그래머

1. 자바 문자열 자르기(substring) 문자열.substring(int beginindex, int endindex); beginindex는 자르는 시작 위치(beginindex에서 시작) endindex는 자르는 끝 위치(endindex까지 자름) beginindex와endindex는 정수 문자열의 시작은 0 부터 String today_datetime = "2020년11월19일15시30분25초"; String today_date = today_datetime.substring(0,11); String today_time = today_datetime.substring(11,20); today_date : 2020년11월19일 today_time : 15시30분25초 2. 자바 문자열 나누기(sp..
1. 자바 문자를 정수로 형변환 (String to int) String number_string = "3355"; int number = Interger.parseInt(number_string); 2. 자바 정수를 문자로 형변환 (int to String) int number = 3355; String number_String = String.valueOf(number); 끝 1. 자바에서 간단하게 문자 -> 정수, 정수 -> 문자로 형변환 할 수 있습니다. 2. 문자에서 정수형으로 형변환 할 경우 숫자인 문자열(number string)만 변환 가능 합니다.

라즈베리파이 root 계정설정 1. root 계정 비밀번호 설정 sudo paaswd root 2. root 계정 원격접속 허용 PermitRootLogin yes 수정후 저장 service ssh restart 3. root 계정 로그인 끝 1. root 계정 비밀번호 변경 2. sshd_config 파일 설정 변경 3. pi 계정이 아닌 root 계정으로 원격 접속이 가능합니다. 4. root 계정에서는 sudo 없이 작업을 진행 할 수 있습니다.