본문 바로가기

개발하자/JAVA중급

스캐너

class Server {
 public static void main(String args[]) throws Exception {
  ServerSocket ss = new ServerSocket(7788);
  Socket s = ss.accept();

  Scanner sc = new Scanner(System.in);
  String str = sc.nextLine();

  OutputStream os = s.getOutputStream();
  os.write(str.getBytes());
 }
}

 

import java.io.InputStream;
import java.net.Socket;
import java.util.Scanner;

class Client {
 public static void main(String args[]) throws Exception {
  Socket s = new Socket("192.168.1.170", 7788);
  InputStream is = s.getInputStream();
  Scanner sc = new Scanner(is);
  String str = sc.nextLine();
  System.out.println(str);
 }
}

'개발하자 > JAVA중급' 카테고리의 다른 글

FileOutputStream  (0) 2015.01.31
서버에서 입력할때 엔터칠때마다 보내지는 소스  (0) 2015.01.31
cmd창에 입력한 글자 보내기  (0) 2015.01.31
파일저장  (0) 2015.01.31
파일내용 입력하기  (0) 2015.01.31