Using CKEditor CKEditor 적용 및 이미지 업로드 Spring Boot Thymeleaf CKEditor Official Homepage Download JS File CKEditor4 Download CKEditor4 Custome Download 개인 선호에 맞게 plugins, skin, 언어 추가 가능 Add JS File zip 파일 압축 해제 후 resource/static/js 폴더 내로 이동 Add CKEditor Skin skin을 추가할 경우 CKEditor 4 Skins에서 마음에 드는 skin을 다운로드 후 resource/static/js/ckeditor/skins 폴더 내에 추가해주자. Set CKEditor script import set CKEDITOR id에..
Spring File Upload Spring Boot + Thymeleaf 코드와 주석 위주로 작성하였습니다. 파일 업로드 테스트에 초점을 맞춰 작성해본 코드로 추가 설명이 필요하시거나 에러 발생 시 댓글 남겨주시면 대단히 감사하겠습니다..! 😊🎉 Add Dependency Apache Commons Commons IO : to assist with developing IO functionality. Commons FileUpload commons-io commons-io 2.6 commons-fileupload commons-fileupload 1.3.1 pom.xml (all view) com.h2database h2 runtime org.projectlombok lombok provided org..
| File Upload Spring framework에 File Upload 기능을 구현해보자. || Setting Spring framework에 File Upload 기능을 구현하기 위해Library를 추가해주자.Apache Commons FileUpload project/pom.xml123456 commons-fileupload commons-fileupload 1.3.3 Colored by Color Scriptercs maxUploadSize는 최대 업로드 가능한 파일의 바이트 크기maxInMemorySize는 디스크에 임시 파일을 생성하기 전 메모리에 보관할 수 있는 최대 바이트 크기project/src/main/webapp/WEB-INF/spring/appServlet/servelt-con..
# default 디렉토리 확인import osos.getcwd()'C:\\Users\\Aaron' # 해당 경로로 파일이 저장 # 텍스트 파일 저장 (savetxt)np.savetxt?np.savetxt( ['fname', 'X', "fmt='%.18e'", "delimiter=' '", "newline='\\n'", "header=''", "footer=''", "comments='# '", 'encoding=None']) # fmt = 출력 포맷, delimiter = 구분기호, header = 헤더arr = np.arange(20).reshape(4,5)array([[ 0, 1, 2, 3, 4], [ 5, 6, 7, 8, 9], [10, 11, 12, 13, 14], [15, 16, 17, 18,..
텍스트 파일 입출력 - 키보드 입력 : input() - 모니터 출력 : print() - 외부 파일 읽기 : read(), readline(), readlines() - 외부 파일로 저장 : write(), writelines() # 과정 1) 파일 열기변수명 = open('FileName', 'Mode') Mode : - r (읽기,default) - w (쓰기) - r+ (읽기+쓰기) - a (이어쓰기) - t (텍스트 파일 처리,default) - b (이진 파일 처리) # 2. 파일 처리 readlines() str = '' while True : # 반복문을 사용하여 파일에 있는 행 읽기 str = file.readline() # 빈 리스트의 메모리 영역에 파일을 한 줄씩 읽어 저장 if st..