Platform
-
The JavaBeans Activation Framework standard extensionPlatform/Environment 2019. 7. 3. 04:10
standard services to determine the type of an arbitrary piece of data, encapsulate access to it, discover the operations available on it, and to instantiate the appropriate bean to perform said operation(s) 참조 사이트: https://www.oracle.com/technetwork/java/jaf11-139815.html
-
The JavaMail APIPlatform/Environment 2019. 7. 3. 02:37
a platform-independent and protocol-independent framework to build mail and messaging applications available as an optional package for use with the Java SE platform and is also included in the Java EE platform 참조 사이트: https://javaee.github.io/javamail/
-
PythonPlatform/util 2017. 5. 6. 17:29
- 외장 함수※ 파이썬 라이브러리는 파이썬 설치 시 자동으로 컴퓨터에 설치가 된다. sys::argv::path::exit() pickle::dump()::load() os::environ::chdir()::getcwd()::system()::popen()::mkdir()::rmdir()::unlink()::rename() shutil::copy() glob::glob() tempfile::mktemp() time::time()::localtime()::asctime()::ctime()::strftime()::sleep() calendar::calendar()::prcal()::prmonth()::weekday()::monthrange() random::random()::randint()::choice(..
-
PythonPlatform/설정 2017. 4. 11. 23:27
- Linux에서 Python 설치 (Centos) 리눅스 설치 방법은 여러 방법이 있는데, 아래는 이중 한 예로 Centos 7에서 수작업으로 최신 버젼을 다운받아 설치하는 예이다. # yum install zlib-devel (-y) # yum install openssl openssl-devel (-y) 01. 아래 URL에서 압축파일 다운로드$ wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tar.xz 02. 압축해제$ tar xf Python-3.5.1.tar.xz 03. 빌드$ cd ./Python-3.5.1 $ ./configure --prefix=/usr/local --enable-shared LDFLAGS="-Wl,-rpath /u..
-
동기화 - 자바Platform/IPC 2016. 7. 24. 16:57
java.util.Queue.offer().remove() java.util.concurrent.BlockingQueue -> extends Queuesynchronized queue .put().take() java.util.concurrent.LinkedBlockingQueue implements BlockingQueue // Unlimited size java.util.concurrent.ArrayBlockingQueue implements BlockingQueue // Fixed size java.util.concurrent.SynchronousQueue implements BlockingQueue // Size of 1
-
자바Platform/규격 2016. 5. 1. 17:19
java.lang.Double.compare() // static java.lang.System.exit()// static.out // static; java.io.PrintStream.print().println().printf() // 자바 5.0.err // static.println().in // static; InputStream.read() 에러가 없이 정상적으로 종료되었을 때는System.exit(0);이렇게 0을 운영체제에 돌려주고, 에러가 있을 때에는 0이 아닌 값을,System.exit(1);이렇게 보통 1을 돌려줍니다.
-
안드로이드Platform/규격 2016. 2. 7. 17:19
마시멜로(Marshmallow)6.0.12015년 12월6.02015년 5월 28일 : 넥서스 5X, 넥서스 6P 롤리팝(Lollipop)5.1.12015년 4월 21일5.1.02015년 3월 9일5.0.22014년 12월 19일5.0.12014년 12월 2일5.02014년 10월 16일 : 넥서스 6 (모토로라 모빌리티), 넥서스 9 (HTC) 킷캣(KitKat)4.4.42014년 6월 20일4.4.32014년 4월 21일4.4.22013년 12월 9일4.4.12013년 12월 5일4.42013년 10월 31일 : 넥서스 5 (LG전자) 젤리빈(Jelly Bean)4.3.12013년 10월 3일4.32013년 7월 24일 : 넥서스 7 2세대4.2.22013년 2월 11일4.2.12012년 11월 27..