Created
January 18, 2015 09:40
-
-
Save revox/db58462d9a0fb9aae69c to your computer and use it in GitHub Desktop.
Basic graphical echo client
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.awt.*; | |
| import java.awt.event.*; | |
| import javax.swing.*; | |
| import java.io.*; | |
| import java.net.*; | |
| public class evenSimplerGuiClient implements ActionListener { | |
| private JTextField user = new JTextField("user",20); | |
| private JTextArea server = new JTextArea("server",5,20); | |
| private JScrollPane sp =new JScrollPane(server); | |
| private Socket s; | |
| private OutputStreamWriter p; | |
| private InputStream i; | |
| private JFrame window = new JFrame("client"); | |
| class serverReader extends Thread | |
| { | |
| public void run() | |
| { | |
| String s=""; | |
| int c; | |
| try | |
| { | |
| while ((c=i.read())!=-1) | |
| { | |
| s=s+ ((char)c); | |
| server.setText(s); | |
| } | |
| } | |
| catch(Exception e){}; | |
| } | |
| } | |
| public evenSimplerGuiClient() throws Exception | |
| { | |
| try | |
| { | |
| s = new Socket("localhost",5000); | |
| p =new OutputStreamWriter(s.getOutputStream()); | |
| i = s.getInputStream(); | |
| new serverReader().start(); | |
| } | |
| catch (Exception e){System.out.println("error");}; | |
| window.setSize(300,300); | |
| window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | |
| window.setLayout(new FlowLayout()); | |
| window.add(sp); | |
| window.add(user); | |
| user.addActionListener(this); | |
| window.setVisible(true); | |
| } | |
| public void actionPerformed(ActionEvent a) | |
| { | |
| String s= user.getText(); | |
| try | |
| { | |
| p.write(s+'\n',0,s.length()+1); | |
| p.flush();user.setText(""); | |
| } | |
| catch (Exception e){}; | |
| } | |
| public static void main(String[] args) throws Exception | |
| { | |
| new evenSimplerGuiClient(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment