분류 전체보기
-
Eclipse MAVEN SettingJSP Servlet 2022. 7. 12. 11:11
1. MAVEN Download Apache Maven Project Maven – Download Apache Maven Downloading Apache Maven 3.8.6 Apache Maven 3.8.6 is the latest release and recommended version for all users. The currently selected download mirror is https://dlcdn.apache.org/. If you encounter a problem with this mirror, please select another mirror. I maven.apache.org 2. 환경 변수 Setting Win + R > sysdm.cpl %MAVEN_HOME%\bin 3..
-
Eclipse Tomcat9 SettingJSP Servlet 2022. 7. 12. 10:13
1. Tomcat9 Download Apache Tomcat Apache Tomcat® - Welcome! The Apache Tomcat® software is an open source implementation of the Jakarta Servlet, Jakarta Server Pages, Jakarta Expression Language, Jakarta WebSocket, Jakarta Annotations and Jakarta Authentication specifications. These specifications are part of the tomcat.apache.org C:\에 압축 해제 2. Eclipse Setting
-
Machine Learning 실습 (1)Machine Learning 2022. 7. 12. 09:55
pandas 와 matplotlib의 개념 import pandas as pd # 1,2 차원의 테이블 형식 데이터를 다루는 모듈 import matplotlib.pyplot as plt # 시각화 도와주는 모듈 # 한국어 처리 - 글꼴 설정 from matplotlib import rc rc('font', family = 'Malgun Gothic') ai_class = pd.DataFrame([['2022-06-27','[원표] Zoom 회의 참가https://us02web.zoom.us/j/8318135592?pwd=L0RJaTA4NFlJZWtXTWJNc215bHM5Zz09'], ['2022-06-27','[운비] 줌 링크 감사합니다~! 오늘은 오전 서버시험 오후 스프링 수업입니다!!!! 제가 오늘..
-
Java 개발 환경 구축JAVA 2022. 7. 8. 09:05
1. JDK Download Oracle사이트 SE (Standard Edition) : JDK 설치 EE (Enterprise Edition) : JDK + Server 설치 JDK (Java Development Kit, 자바 개발 도구) JRE (Java Runtime Environment, 자바 실행 환경) JVM (Java Virtual Machine, 자바 가상 머신) 2. 환경변수 설정 Win + R 변수 이름 : JAVA_HOME 변수 값 : JDK설치 경로 %JAVA_HOME%\bin 3. Eclipse Download Eclipse사이트 Eclipse Downloads | The Eclipse Foundation The Eclipse Foundation - home to a global..
-
Android 이론 (2)Android 2022. 7. 7. 15:40
Event 처리 객체 - Event Listener - 특정 이벤트를 처리하는 인터페이스 - 여러 View에 의해 공유될 수 있으므로 해당 View가 누구인지 전달 Event 처리 과정 Event 처리 방식 - XML로 Event Method 연결 - Listener Interface를 Activity Class에 구현 - Listener Class를 익명 Class로 정의 Android 4대 Component Activity 생명주기 Intent 이해 - 하나의 액티비티가 다른 액티비티를 실행시킬 수 있는 메시지 시스템 Intent의 주요 Action - 다른 액티비티를 실행하거나 데이터를 전달할 수 있는 안드로이드 구성 요소 Intent의 종류
-
Android 실습 (2)Android 2022. 7. 7. 11:59
1) Linear Layout 2) Constraint Layout 계산기를 만들어보겠습니다 package com.example.ex_0707; import androidx.appcompat.app.AppCompatActivity; import android.media.Image; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class MainActivity4 extends AppCompatActivity { // 0. id값을 저장할..