Java192 프로젝트 2023. 6. 5. 배포한 javafx프로젝트 실행 해당 파일 존재하는 주소에서 cmd 실행 & javafx sdk폴더복사 java --module-path "java_fx\lib" --add-modules=javafx.controls,javafx.fxml -jar chat_server.jar exe파일 만들기 Launch4j 다운로드 Launch4j Executable Wrapper Download Launch4j Executable Wrapper for free. Cross-platform Java executable wrapper for creating lightweight Windows native EXEs. Provides advanced JRE search, application startup configuration and better use.. 2023. 6. 1. javafx 설정 2023. 5. 30. 0526실습 2023. 5. 26. 05.24 FXML 요소 정보를 필드 에 초기화 후 init()호출됨. bundle : 다국어 지원에 쓰임 2023. 5. 25. 05.19 스레드,네트워크 동기화 메소드 및 동기화 블록 – synchronized 단 하나의 스레드만 실행할 수 있는 메소드 또는 블록 다른 스레드는 메소드나 블록이 실행이 끝날 때까지 대기해야 package t04_sync; public class ThreadSyncEX { public static void main(String[] args) { Runnable work = new WithDrawThread(); Thread thread1 = new Thread(work); Thread thread2 = new Thread(work); thread1.setName("스레드 1"); thread2.setName("스레드 2"); thread1.start(); thread2.start(); } } class Account{ // .. 2023. 5. 23. 이전 1 ··· 21 22 23 24 25 26 27 ··· 32 다음