분류 전체보기 (229) 썸네일형 리스트형 Class ServerSocket 요청을 기다리고(wait), 결과를 리턴한다... 서버의 기본컨셉 주요 메소드 Package java.net 데이터그램소켓은 연결이 없는(connection-less) 소켓이다. 아파치 카프카 blog.naver.com/dktmrorl/222115850592 Overview of HTTP The basic features of the client-server protocol: what it can do and its intended uses. HTTP [Java] Regular Expression Find out if there are any occurrences of the word "w3schools" in a sentence import java.util.regex.Matcher; import java.util.regex.Pattern; public class MyClass { public static void main(String[] args) { Pattern pattern = Pattern.compile("w3schools", Pattern.CASE_INSENSITIVE); Matcher matcher = pattern.matcher("Visit W3Schools!"); boolean matchFound = matcher.find(); if(matchFound) { System.out... daemon thread stackoverflow.com/questions/2213340/what-is-a-daemon-thread-in-java [Java] Thread 문제점 codingcoding.tistory.com/511 [Java] Thread (api 8) 주요 메소드 [Java] Thread 1.쓰레드의 도입 2. Creating a Thread 가. Thread 클래스를 상속하고 run() 메소드를 오버라이딩하거나 public class MyClass extends Thread { public void run() { System.out.println("This code is running in a thread"); } } 나. Runnable 인터페이스를 구현한다. public class MyClass implements Runnable { public void run() { System.out.println("This code is running in a thread"); } } 3. Running Threads 가.의 경우 인스턴스 생성 후 start() 메소드 호출 the thread.. 이전 1 ··· 15 16 17 18 19 20 21 ··· 23 다음