aboutsummaryrefslogtreecommitdiff
path: root/CS2452/GUI_network/SocketReader.java
blob: dacdaf108085c66470ea9654e2a5e305a215783c (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
package assign6;

import java.net.*;

import javax.swing.JFrame;

import java.io.*;

public class SocketReader extends Thread
{
	BufferedReader br;
	Gui g;
	Thread t;

	public SocketReader(Socket s, Gui g)
	{
		try
		{
			br = new BufferedReader(new InputStreamReader(s.getInputStream()));
		} catch (IOException e)
		{
			e.printStackTrace();
		}
		
		this.g = g;

		t = new Thread(this);
		t.start();
	}

	public void run()
	{
		String str = null;
		while (true)
		{
			try
			{
				str = br.readLine();
			} catch (IOException e)
			{
				e.printStackTrace();
			}
			if (str != null)
				g.changeImage();
		}

	}

}