본문 바로가기

Programming303

[JAVA] Calendar 와 ,LocalDateTime으로 날짜 연산의 결과가 틀리게 출력 됩니다. 원하는 결과는 LocalDate나 , LocalDateTime으로 확인 할 수 있었습니다.package com.test;import java.io.File;import java.nio.file.Files;import java.nio.file.attribute.FileTime;import java.text.SimpleDateFormat;import java.time.Instant;import java.time.LocalDateTime;import java.time.ZoneId;import java.util.Calendar;import java.util.Date;public class DateTest { public static void main(String[] args) throws Exception { .. 2024. 5. 15.
[JAVA] ArrayList Stream 이용 , string join 예제 입니다. package com.test;import java.util.ArrayList;import java.util.HashMap;import java.util.stream.Collectors;public class TestCls { public static void main(String[] args) { ArrayList> testArray = new ArrayList(); testArray.add(new HashMap() {{ put("name", "홍길동"); put("id" , "user1"); put("empno" , "12345678"); }} ); testArray.add(new HashMap() {{ put("name", "김철수"); put("id" , "user2");.. 2024. 5. 6.
[WPF] TrayIcon 생성 시에 Resource 의 이미지 설정 하기 출처 : https://stackoverflow.com/questions/74466/how-do-i-use-an-icon-that-is-a-resource-in-wpf How do I use an icon that is a resource in WPF? I have a .ico file that is embedded as a resource (build action set to resource). I am trying to create a NotifyIcon. How can I reference my icon? notifyIcon = new NotifyIcon(); notifyIcon.Icon ... stackoverflow.com 프로젝트의 리소스 관리자에서 Icon 을 추가 완료 후 Icon 파일에 .. 2024. 4. 2.
[WPF] Title Bar에 최소화,최대화,닫기 버튼 숨기는 방안 [WPF] Title Bar에 최소화,최대화,닫기 버튼 숨기는 방안 출처 : c# - How to hide close button in WPF window? - Stack Overflow How to hide close button in WPF window? I'm writing a modal dialog in WPF. How do I set a WPF window to not have a close button? I'd still like for its WindowState to have a normal title bar. I found ResizeMode, WindowState, and WindowS... stackoverflow.com Loaded 이벤트에 명시 하였습니다! /// /// MainW.. 2024. 3. 21.