summaryrefslogtreecommitdiff
path: root/src/Client/ChatClientReader.java
blob: a8c02cbcd688a5a13b05b3723c4c5dacc9de16a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package Client;
import java.net.Socket;
import java.util.*;
import java.io.*;

public class ChatClientReader extends Thread
{
	public static Scanner reader = new Scanner(System.in);
	private Socket soc;
	
	/** constructor 
	 * @param the socket */	
	public ChatClientReader (Socket soc)
	{
		this.soc = soc;
	}
	
	/** Running the object and translate the input from bytes to letters*/	
	public void run()
	{
		try
		{
	
			String line;
	
			InputStreamReader inputTemp = new InputStreamReader(this.soc.getInputStream());
			BufferedReader input = new BufferedReader(inputTemp);
			
			do {
				line = input.readLine(); // FIXME: more then 1 line
				if (line == null)
				{
					soc.close();
				}
				line = "[" + line + "]";
				System.out.println("");
				System.out.println(line);
			} while (line != null);
			

		} catch (IOException e)	{
			System.err.println(e);
			return;
		}
		
		

	}

}