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

1. Python 문자열 자르기 문자열[시작인덱스:종료인덱스] 한글자 자르기 지정 인덱스 이후로 자르기 범위로 자르기 뒤에서 자르기 test_string="ABC456DEF789GHI0.TXT" print("01번: "+test_string[0])#A print("02번: "+test_string[1])#B print("03번: "+test_string[2])#C print("04번: "+test_string[5:])#6DEF789GHI0.TXT print("05번: "+test_string[8:])#F789GHI0.TXT print("06번: "+test_string[11:])#9GHI0.TXT print("07번: "+test_string[0:3])#ABC print("08번: "+test_strin..
1. 자바 폴더 만들기 import java.io.File; public class tistory_create_directory { public static void main(String[] args) { String make_dir_path = "C:\\Users\\HO\\Desktop\\new_forder"; File make_dir = new File(make_dir_path); make_dir.mkdir(); if(!make_dir.exists()) { try { make_dir.mkdir(); System.out.println("폴더생성"); }catch(Exception e) { e.printStackTrace(); } }else { System.out.println("폴더가 이미 존재함");..
1. 자바 날짜 구하기 (Date) Date 객체 사용 import java.util.date 필요 import java.util.Date; public class tistory_date_time { public static void main(String[] args) { Date today = new Date(); System.out.println(today); } } 출력 Mon Jan 04 22:58:31 KST 2021 2. 자바 날짜 표현방법(SimpleDateFormat) Date 객체와 SimpleDateFormat 사용으로 표현방법 변경 import java.text.SimpleDateFormat 필요 new SimpleDateFormat("패턴"); 원하는 날짜 시간 패턴으로 설정 imp..