Advertisement
Zuhairy_Harry

Receiver_1.java

Jun 11th, 2024
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.14 KB | None | 0 0
  1. import java.awt.EventQueue;
  2.  
  3. import javax.swing.JFrame;
  4. import javax.swing.JLabel;
  5. import java.awt.BorderLayout;
  6. import java.awt.Font;
  7. import java.io.DataInputStream;
  8. import java.io.DataOutputStream;
  9. import java.io.IOException;
  10. import java.net.ServerSocket;
  11. import java.net.Socket;
  12.  
  13. import javax.swing.JTextField;
  14. import javax.swing.JTextArea;
  15. import javax.swing.JButton;
  16.  
  17. public class Receiver_1 {
  18.  
  19.     private JFrame frame;
  20.     private JTextField textField;
  21.  
  22.     /**
  23.      * Launch the application.
  24.      */
  25.     public static void main(String[] args) {
  26.         EventQueue.invokeLater(new Runnable() {
  27.             public void run() {
  28.                 try {
  29.                     Receiver_1 window = new Receiver_1();
  30.                     window.frame.setVisible(true);
  31.                 } catch (Exception e) {
  32.                     e.printStackTrace();
  33.                 }
  34.             }
  35.         });
  36.     }
  37.  
  38.     /**
  39.      * Create the application.
  40.      */
  41.     public Receiver_1() {
  42.         initialize();
  43.     }
  44.  
  45.     /**
  46.      * Initialize the contents of the frame.
  47.      */
  48.     private void initialize() {
  49.         frame = new JFrame();
  50.         frame.setBounds(100, 100, 450, 300);
  51.         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  52.         frame.getContentPane().setLayout(null);
  53.        
  54.         JLabel lblNewLabel = new JLabel("String Receive");
  55.         lblNewLabel.setFont(new Font("Tahoma", Font.BOLD, 12));
  56.         lblNewLabel.setBounds(37, 62, 107, 13);
  57.         frame.getContentPane().add(lblNewLabel);
  58.        
  59.         JLabel lblMessage = new JLabel("Message");
  60.         lblMessage.setFont(new Font("Tahoma", Font.BOLD, 12));
  61.         lblMessage.setBounds(37, 93, 107, 13);
  62.         frame.getContentPane().add(lblMessage);
  63.        
  64.         textField = new JTextField();
  65.         textField.setFont(new Font("Tahoma", Font.BOLD, 12));
  66.         textField.setBounds(156, 60, 96, 19);
  67.         frame.getContentPane().add(textField);
  68.         textField.setColumns(10);
  69.        
  70.         try {
  71.             ServerSocket ss = new ServerSocket(8081);
  72.  
  73.             while (true) {
  74.                 Socket s = ss.accept();
  75.                 DataInputStream in = new DataInputStream(s.getInputStream());
  76.                 String strSender = in.readUTF();
  77.  
  78.                 textField.setText(strSender);
  79.                 String strToSend = "";
  80.  
  81. //                try {
  82. //                    int intCast = Integer.parseInt(strSender.trim());
  83. //
  84. //                    if (intCast % 2 == 0) {
  85. //                        strToSend = "You sent even number";
  86. //                    } else {
  87. //                        strToSend = "You sent odd number";
  88. //                    }
  89. //                } catch (NumberFormatException pe) {
  90. //                    strToSend = "Please send a number la!";
  91. //                }
  92. //
  93. //                DataOutputStream out = new DataOutputStream(s.getOutputStream());
  94. //                out.writeUTF(strToSend);
  95.             }
  96.         } catch (IOException e) {
  97.             e.printStackTrace();
  98.         }
  99.        
  100.         JTextArea textArea = new JTextArea();
  101.         textArea.setFont(new Font("Monospaced", Font.PLAIN, 13));
  102.         textArea.setBounds(154, 104, 220, 100);
  103.         frame.getContentPane().add(textArea);
  104.        
  105.         JButton btnNewButton = new JButton("Send to Sender");
  106.         btnNewButton.setFont(new Font("Tahoma", Font.BOLD, 12));
  107.         btnNewButton.setBounds(132, 232, 139, 21);
  108.         frame.getContentPane().add(btnNewButton);
  109.     }
  110.  
  111. }
  112.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement