본문 바로가기

멘토410

JSP 3장 디렉티브 태그 정리 + 연습문제 01. page 디렉티브 : JSP페이지에 대한 정보 설정 include디렉티브 : JSP 페이지의 특정 영역에 다른문서를 포함 taglib 디렉티브 : JSP페이지에서 사용할 태그 라이브러리 설정 02 page 디렉티브 : 03 include디렉티브 : 04 05 header.jsp Hello, Java Server Pages include.jsp 06 language="java" contentType="text/html; charset=UTF-8"%> 도서 웹 쇼핑몰 tooter.jsp Welcome to Web Market!! ©BookMarket 2023. 6. 27.
안드로이드 돌핀버전으로 자바와 비슷한 GUI해보기(설정) 상단 바에 Tool 클릭 -> 디바이스 클릭 2023. 6. 26.
안드로이드 돌핀버전 설치 https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html#2021 Android Studio Releases List | IntelliJ Platform Plugin SDK plugins.jetbrains.com https://developer.android.com/studio/archive 이게 내기준 제일 최신버전 누르면 바로 다운로드됨 https://redirector.gvt1.com/edgedl/android/studio/install/2021.3.1.17/android-studio-2021.3.1.17-windows.exe 그냥 온리 넥스트 후 피니쉬 2023. 6. 26.
SQL 만들기 권한주기 DCL(제어) : grant 이거 최신 이걸로하면됨 Microsoft Windows [Version 10.0.22000.2057] (c) Microsoft Corporation. All rights reserved. C:\Users\LG>sqlplus sys/java@localhost:1521 as sysdba SQL*Plus: Release 11.2.0.1.0 Production on Mon Aug 14 00:18:38 2023 Copyright (c) 1982, 2010, Oracle. All rights reserved. Connected to: Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production SQL> cr.. 2023. 6. 26.
파이썬(List & dictionary) 리스트와 딕셔너리 사용법 및 함수 정리 List(리스트) : 순서가 중요하게 값을 담음 ex : 0번째는 사과 1번쨰는 배 2번쨰는 딸기 ..... Dictionary(딕셔너리) : 키와 벨류로 값을 담는 자료형 키 : 벨류 list 사용법 : 대괄호 a_list = ['사과','배','감'] #결과값 ['사과','배','감'] print(a_list) #결과값 사과 print(a_list[0]) a_list = [ 2,'배',true] #결과값 [ 2,'배',true] print(a_list) #배열 안에 배열 a_list = [ 2,'배',true,['사과','감']] #결과값 [ 2,'배',true,['사과','감']] print(a_list) #배열 안에 배열 가져오기 a_list = [ 2,'배',true,['사과','감']] #결과.. 2023. 6. 25.
파이썬(String) 문자열 문법정리 문자열 길이 : len() text = "abcd" result = len(text) #결과값 5 print(result) 문자열 자르기 : 변수 [:자르고 싶은 곳까지 숫자] text = "abcd" result = text[:3] #결과값 abc print(result) 문자열 뒤부터 출력 : 변수 [자르고 싶은곳 숫자 :] text = "abcd" result = text[2:] #결과값 cd print(result) 문자열 원하는 값 : 변수 [여기부터 나와라 숫자 : 여기까지 나와라 숫자] text = "abcd" result = text[1:4] #결과값 bcd print(result) 문자열 복사 : 변수[:] 굳이 쓸 필요 없음 text = "abcd" result = text[:] #결과.. 2023. 6. 25.