일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- HLS
- 행정구역분류
- Shell script
- android studio
- Pod
- aws
- Windows10
- aws cli
- wireshark
- Android
- ebpf
- dart
- deployment
- Sysinternals
- Kubernetes
- Java
- spring cloud config
- VSCode
- kubectl
- nginx-media-server
- service
- ffmpeg
- golang
- Flutter
- configmap
- Python
- RTMP
- docker
- namespace
- macos
- Today
- Total
목록Programming/Java (5)
woonizzooni
이전 게시물 참고. 1. QGiS이용 2. python이용 이번에는 java코드로 shapefile에서 GeoJson형식으로 좌표 추출 시도. o 빌드 & 실행 환경 구성 geotools를 이용할 건데, 우선 아래 내용 참고해서 실행 환경 구성. https://docs.geotools.org/latest/userguide/tutorial/quickstart/ Eclipse Quickstart Netbeans Quickstart IntelliJ Quickstart Maven Quickstart Java 11 Quickstart 현재 편의상 eclipse, maven을 활용해본다. 아래는 내 pom.xml설정 상태. ... org.geotools gt-shapefile ${geotools.version} o..
Elicpse 등에서 decompiler 설치 검색해보면 JAD 설치 내용이 꽤 나오는데, Fernflower > Procyon or CFR > JD 등을 사용하자. (주관적) 특히, 최신 java를 지원하도록 업데이트 되는 것을 선택하자. 대략 아래 5 종류 정도만 기억해두자. o JD (http://java-decompiler.github.io/) - open-source project - JD-CORE : https://github.com/java-decompiler/jd-core - JD-Eclipse : https://github.com/java-decompiler/jd-eclipse - JD-GUI : https://github.com/java-decompiler/jd-gui o CFR (ht..
CIDR (Classless Inter-Domain Routing) https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing IPv4 CIDR blocks subnetmask입력시 prefix legnth를 구해본다. (CIDR계산 방법 이해 전제하에 작성함) ex) subnetmask가 - "255.255.255.0"이면 24반환 - "299.255.255.0"이면 throws UnknownHostException - "255.255.241.0"이면 -1반환 (비정상 subnetmask) public int convertNetmaskToPfxLength(String subnetmask) throws UnknownHostException { InetAd..
파일 크기, 단일 파일/복수개 파일 등 조건별 차이가 있겠지만, 다음과 같은 검색어 결과로 여러 개발자/경험자들의 검토 의견을 참고해보자 "What is the fastest way to read a large file in Java" "How to Read a Large File Efficiently with Java" "How to read files quickly with java" 몇 가지만 적어두자.. 2008/02/24 How to read files quickly http://nadeausoftware.com/articles/2008/02/java_tip_how_read_files_quickly Conclusions For the best Java read performance, there ..
심심할때 열어보자... Java Spec.Java Language and Virtual Machine Specifications https://docs.oracle.com/javase/specs/ Java SE Specifications Java Language and Virtual Machine Specifications Java SE 12 Released March 2019 as JSR 386 The Java Language Specification, Java SE 12 Edition HTML | PDF The Java Virtual Machine Specification, Java SE 12 Edition HTML | PDF Java SE 11 Released September 20 docs.ora..