Skip to content

Hello, Java World!

ImSejin edited this page Mar 13, 2019 · 2 revisions

Title

this is text.

  • list 1
  • list 2

quote


package practice.network;

import java.io.*;
import java.net.ServerSocket;
import java.net.Socket;

public class MainClass {

	public static void main(String[] args) throws IOException {
		ServerSocket ss = null;
		Socket s = null;
		
		ss = new ServerSocket(9000);
		System.out.println(" -- ready to welcome client -- ");
		
		s = ss.accept();
		System.out.println(" -- success to be connected with client -- ");
		System.out.println("socket: " + s);
		
		if(s != null) s.close();
		if(ss != null) ss.close();
		
	}

}

프로그래머 역사

2016.12.

  • HTML을 배우다
  • SQL을 접하다

2017.2.

  • CSS를 접하다
  • JSP를 접하다

2017.7.

  • PHP를 접하다

2017.9.

  • Java를 접하다
  • SQL을 배우다

2018.4.

  • ASP를 접하다
  • Java를 배우다

2018.12.

  • 대학(컴퓨터공학전공) 입시 불합격

2019.2.

  • Java를 공부하다
Clone this wiki locally