본문 바로가기

Java EE

자바 오픈소스 WAS GlassFish Server Open Source Edition v4.1 자바 오픈소스 WAS GlassFish Server Open Source Edition v4.1 * 새 버전의 특징 : 웹 소켓 1.1 지원, JAX RS 2.0 지원, Open MQ 자바 메시징 서비스 2.0 지원, 자바 8 지원 GlassFish Server 4.1 Open Source Edition is available for download! This release of the world's first Java EE 7 application server includes multiple new and valuable features and updates. Here is a quick look at what's new: Updated Platform Support. This release adds .. 더보기
자바 메시지(메시징) 웹소켓 : JMS over WebSocket 자바 메시지(메시징) 웹소켓 : JMS over WebSocket JMS over WebSocket http://www.parleys.com/play/52509ef4e4b0c4f11ec57671/about JMS 2.0 provides a simpler API for accessing your messaging infrastructure. When it is extended by the addition of WebSocket, users can choose from a variety of integration methods for robust, reliable asynchronous messaging between applications. This session shows how using WebSock.. 더보기
자바 JAVA ZIP UNZIP 압축파일 압축, 해제, 풀기, 비밀번호 파일 풀기 등의 소스와 방법 자바 JAVA ZIP UNZIP 압축파일 압축, 해제, 풀기, 비밀번호 파일 풀기 등의 소스와 방법 1) 표준 라이브러리 이용 import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; public class DeCompressZipFileExample { public static void main(String[] args) throws Exception{ String zipFile = "C:\\FileforJava\\zip_compressed_file.zip"; String outputFo.. 더보기