일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- docker
- 파이썬
- plugin
- aggs
- TensorFlow
- Mac
- 차트
- licence delete curl
- ELASTIC
- Test
- query
- Kafka
- License
- high level client
- Java
- 900gle
- springboot
- token filter test
- analyzer test
- zip 암호화
- flask
- sort
- MySQL
- Python
- aggregation
- license delete
- matplotlib
- Elasticsearch
- API
- zip 파일 암호화
Archives
- Today
- Total
목록JAVA/study (1)
개발잡부
[java] java stream
//스트림 생성 //컬렉션 List list = Arrays.asList("a", "b", "c"); Stream stream = list.stream(); //배열 String[] array = new String[]{"a","b","c"}; Stream stream1 = Arrays.stream(array); Stream stream2 = Arrays.stream(array, 1, 3); //정적메소드 Arrays.stream() 에 인자를 입력 //인덱스 1 포함, 3제외 //빌더 Stream stream3 = Stream.builder().add("a").add("b").build(); //Generator Stream stream4 = Stream.generate(()->"a").limit(3)..
JAVA/study
2022. 5. 21. 13:36