본문 바로가기
728x90
반응형

전체 글302

[Python] Anaconda 프로그램 설치 및 이클립스 프로젝트 생성 Anaconda는 Python만 설치하는 것보다 훨씬 더 많은 패키지를 제공한다 설치 방법은 아래와 같다 [설치 방법] (1) 사이트 접속(https://www.anaconda.com/) 후 첫 화면에 다운로드 클릭 Anaconda | The World's Most Popular Data Science Platform Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities. www.anaconda.com (2) Next 이동 → I Agree 이동 → Just Me 체크 이동 (3) 저장 경로 지정 (폴더 이.. 2022. 4. 1.
[JSP] 웹 이미지 파일 업로드 작업 웹서버 폴더에 이미지 파일 업로드 작업할 때 필요한 작업 1 form태그 속성 추가(1) enctype="multipart/form=data" 2 form태그 속성 추가(2) method="post" (get방식 X) 3 MultipartRequest 객체 생성/임포트 등 String configFolder = config.getServletContext().getRealPath("img"); int maxSize = 1024 * 1024 * 5; //최대 5메가까지 하겠다 String encType = "UTF-8"; MultipartRequest mr = new MultipartRequest( request, //요청정보 configFolder, //웹서버폴더 위치 maxSize, //최대 크기 en.. 2022. 3. 31.
[JSP] 연도 오름차순/내림차순(Core 라이브러리 활용 - forEach) [연도 오름차순] 1 2 3 4 5 6 7 ${i } Colored by Color Scripter cs [연도 내림차순] 1 2 3 4 5 6 7 8 9 10 11 12 13 ${currentyear-i+1900} Colored by Color Scripter cs 2022. 3. 31.
[JSP] Java 배열 반복문(Core 라이브러리 활용 - forEach) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ${cty[i]} ${i} Colored by Color Scripter cs 2022. 3. 31.
728x90
반응형