본문 바로가기

J2SE

자바 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.. 더보기
자바7 Java SDK JDK7 u60 업데이트 릴리즈 7u60 배포 자바7 Java SDK JDK7 u60 업데이트 릴리즈 7u60 배포 : 미션 컨트롤, 자바FX JavaFX 2.2.60 Java™ SE Development Kit 7, Update 60 (JDK 7u60) The full version string for this update release is 1.7.0_60-b19 (where "b" means "build"). The version number is 7u60. Highlights This update release contains several enhancements and changes including the following: * Java Mission Control * New Features and Changes IANA Data 2014.. 더보기
자바 EE8 SSE Server Sent Event 지원 Adding SSE support in Java EE 8 자바 EE(서버 자바에서 SSE (Server-Sent Event)를 지원합니다) 웹소켓과 비교되는 기술인 SSE 웹소켓의 경쟁기술이자, 보완적인 효과가 있어요. SSE (Server-Sent Event) is a standard mechanism used to push, over HTTP, server notifications to clients. SSE is often compared to WebSocket as they are both supported in HTML 5 and they both provide the server a way to push information to their clients but they are differen.. 더보기