diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f3d6549
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/build/
\ No newline at end of file
diff --git a/nbproject/build-impl.xml b/nbproject/build-impl.xml
index 4abce43..f071bc4 100644
--- a/nbproject/build-impl.xml
+++ b/nbproject/build-impl.xml
@@ -46,8 +46,8 @@ is divided into following sections:
-
-
+
+
@@ -76,7 +76,7 @@ is divided into following sections:
-
+
@@ -156,6 +156,7 @@ is divided into following sections:
+
@@ -840,7 +841,7 @@ is divided into following sections:
-
+
@@ -852,7 +853,7 @@ is divided into following sections:
-
+
@@ -975,15 +976,15 @@ is divided into following sections:
-
+
-
+
-
+
@@ -991,7 +992,7 @@ is divided into following sections:
-
+
@@ -1186,7 +1187,7 @@ is divided into following sections:
Must select one file in the IDE or set run.class
-
+
Must select one file in the IDE or set applet.url
diff --git a/nbproject/genfiles.properties b/nbproject/genfiles.properties
index cb2d623..a1e02d5 100644
--- a/nbproject/genfiles.properties
+++ b/nbproject/genfiles.properties
@@ -4,5 +4,5 @@ build.xml.stylesheet.CRC32=8064a381@1.75.1.48
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=6d39ee20
-nbproject/build-impl.xml.script.CRC32=681df6e3
-nbproject/build-impl.xml.stylesheet.CRC32=05530350@1.79.1.48
+nbproject/build-impl.xml.script.CRC32=5c486f47
+nbproject/build-impl.xml.stylesheet.CRC32=830a3534@1.80.1.48
diff --git a/nbproject/private/private.properties b/nbproject/private/private.properties
index 1b6c36a..5b0da8f 100644
--- a/nbproject/private/private.properties
+++ b/nbproject/private/private.properties
@@ -1,2 +1,2 @@
compile.on.save=true
-user.properties.file=C:\\Users\\ANDITYAARIFIANTO\\AppData\\Roaming\\NetBeans\\8.1\\build.properties
+user.properties.file=C:\\Users\\abdulnursahid\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
diff --git a/src/Console/ConecThread.java b/src/Console/ConecThread.java
new file mode 100644
index 0000000..8630db8
--- /dev/null
+++ b/src/Console/ConecThread.java
@@ -0,0 +1,41 @@
+package Console;
+
+import java.io.IOException;
+import java.net.Socket;
+import javaChat.Connection;
+/**
+ *
+ * @author abdulnursahid
+ */
+public class ConecThread extends Thread {
+
+ private Socket client;
+ private Connection connection;
+ public ConecThread(Socket newClient) throws IOException{
+ this.client = newClient;
+ connection = new Connection(client);
+ }
+ public void run(){
+ try {
+ connection.startChat(" Start The Chat ");
+ System.out.println(" ------------- ");
+ System.out.println(" new cilent connected ");
+ System.out.println(" client information ");
+ System.out.println(connection.getClientInformation());
+
+ String inputan;
+ String message;
+ while((inputan = connection.readStream()) != null && inputan.equals("Quit")){
+ message = "Client " + connection.getIpClient() + "Said : " + inputan;
+ System.out.println(message);
+ connection.sendToAll(message);
+ }
+ message = "Client from IP : " + connection.getIpClient() + "Quit the chat room";
+ System.out.println(message);
+ connection.sendToAll(message);
+ connection.disconnect();
+ } catch (Exception e) {
+ System.out.println("Error");
+ }
+ }
+}
diff --git a/src/Console/ConsoleApp.java b/src/Console/ConsoleApp.java
new file mode 100644
index 0000000..eaee417
--- /dev/null
+++ b/src/Console/ConsoleApp.java
@@ -0,0 +1,63 @@
+
+package Console;
+
+import javaChat.ClientConnection;
+
+/**
+ *
+ * @author abdulnursahid
+ */
+public class ConsoleApp {
+
+ private ClientConnection client;
+ public class ReadInput extends Thread{
+ public void run(){
+
+ try {
+ String inputKeyboard;
+ do {
+ System.out.println(">> ");
+ inputKeyboard = client.inputString();
+ client.writeStream(inputKeyboard);
+ } while(!inputKeyboard.equals("Quit"));
+ client.disconnect();
+ } catch (Exception e) {
+ System.out.println("Error");
+ }
+ }
+ }
+
+ public class WriteInput extends Thread{
+
+ public void run(){
+
+ try {
+ String inputan;
+ while ((inputan = client.readStream()) != null){
+ System.out.println(inputan);
+ System.out.println(">>");
+ }
+ } catch (Exception e) {
+ System.out.println("Error");
+ }
+ }
+ }
+
+ public void startChat(){
+ try {
+
+ client = new ClientConnection();
+ System.out.println("Input server IP : ");
+ String ip = client.inputString();
+ client.connect(ip);
+ ReadInput in = new ReadInput();
+ WriteInput out = new WriteInput();
+ in.start();
+ out.start();
+
+ } catch (Exception e) {
+ System.out.println("Error");
+ }
+ }
+}
+
diff --git a/src/Driver/Driverclientgui.java b/src/Driver/Driverclientgui.java
new file mode 100644
index 0000000..fb251d2
--- /dev/null
+++ b/src/Driver/Driverclientgui.java
@@ -0,0 +1,14 @@
+package Driver;
+
+import GUI.chatController;
+
+/**
+ *
+ * @author abdulnursahid
+ */
+public class Driverclientgui {
+ public static void main(String[] args) {
+
+ chatController abd = new chatController();
+ }
+}
diff --git a/src/Driver/Driverclientonsole.java b/src/Driver/Driverclientonsole.java
new file mode 100644
index 0000000..020d65d
--- /dev/null
+++ b/src/Driver/Driverclientonsole.java
@@ -0,0 +1,15 @@
+package Driver;
+
+import Console.ConsoleApp;
+
+/**
+ *
+ * @author abdulnursahid
+ */
+public class Driverclientonsole {
+ public static void main(String[] args) {
+
+ ConsoleApp abd = new ConsoleApp();
+ abd.startChat();
+ }
+}
diff --git a/src/Driver/Driverserver.java b/src/Driver/Driverserver.java
new file mode 100644
index 0000000..792a777
--- /dev/null
+++ b/src/Driver/Driverserver.java
@@ -0,0 +1,26 @@
+package Driver;
+
+import Console.ConecThread;
+import javaChat.ServerConnection;
+
+/**
+ *
+ * @author abdulnursahid
+ */
+public class Driverserver {
+
+ public static void main(String[] args) {
+ try {
+ ServerConnection server = new ServerConnection();
+ System.out.println("Server Information");
+ System.out.println(server.getServerInformation());
+ while (true) {
+ ConecThread connection = new ConecThread(server.getClient());
+ connection.start();
+ }
+
+ } catch (Exception e) {
+ System.out.println("Error");
+ }
+ }
+}
diff --git a/src/GUI/ChatView.form b/src/GUI/ChatView.form
new file mode 100644
index 0000000..0e90112
--- /dev/null
+++ b/src/GUI/ChatView.form
@@ -0,0 +1,72 @@
+
+
+
diff --git a/src/GUI/ChatView.java b/src/GUI/ChatView.java
new file mode 100644
index 0000000..2460bc9
--- /dev/null
+++ b/src/GUI/ChatView.java
@@ -0,0 +1,101 @@
+package GUI;
+
+import java.awt.event.ActionListener;
+
+/**
+ *
+ * @author abdulniursahid
+ */
+public class ChatView extends javax.swing.JFrame {
+
+ /**
+ * Creates new form JFrameChatView
+ */
+ public ChatView() {
+ initComponents();
+ }
+
+ /**
+ * This method is called from within the constructor to initialize the form.
+ * WARNING: Do NOT modify this code. The content of this method is always
+ * regenerated by the Form Editor.
+ */
+ @SuppressWarnings("unchecked")
+ // //GEN-BEGIN:initComponents
+ private void initComponents() {
+
+ jScrollPane1 = new javax.swing.JScrollPane();
+ txAreaChat = new javax.swing.JTextArea();
+ txFieldChat = new javax.swing.JTextField();
+
+ setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
+
+ txAreaChat.setEditable(false);
+ txAreaChat.setColumns(20);
+ txAreaChat.setRows(5);
+ txAreaChat.setText("Input Server IP Address :");
+ jScrollPane1.setViewportView(txAreaChat);
+
+ txFieldChat.addActionListener(new java.awt.event.ActionListener() {
+ public void actionPerformed(java.awt.event.ActionEvent evt) {
+ txFieldChatActionPerformed(evt);
+ }
+ });
+
+ javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
+ getContentPane().setLayout(layout);
+ layout.setHorizontalGroup(
+ layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
+ .addGroup(layout.createSequentialGroup()
+ .addContainerGap()
+ .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
+ .addComponent(txFieldChat, javax.swing.GroupLayout.Alignment.TRAILING)
+ .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 380, Short.MAX_VALUE))
+ .addContainerGap())
+ );
+ layout.setVerticalGroup(
+ layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
+ .addGroup(layout.createSequentialGroup()
+ .addGap(16, 16, 16)
+ .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 207, javax.swing.GroupLayout.PREFERRED_SIZE)
+ .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
+ .addComponent(txFieldChat, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
+ .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
+ );
+
+ pack();
+ }// //GEN-END:initComponents
+
+ private void txFieldChatActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txFieldChatActionPerformed
+ // TODO add your handling code here:
+ }//GEN-LAST:event_txFieldChatActionPerformed
+
+ /**
+ * @param args the command line arguments
+ */
+ // Variables declaration - do not modify//GEN-BEGIN:variables
+ private javax.swing.JScrollPane jScrollPane1;
+ private javax.swing.JTextArea txAreaChat;
+ private javax.swing.JTextField txFieldChat;
+ // End of variables declaration//GEN-END:variables
+
+ public void setTxAreaChat(String message) {
+ txAreaChat.append(message + "\n");
+ }
+
+ public Object getTxFieldChat() {
+ return txFieldChat;
+ }
+
+ public String getStringChat() {
+ return txFieldChat.getText();
+ }
+
+ public void setTxFieldChat(String message) {
+ this.txFieldChat.setText(message);
+ }
+
+ public void addListener(ActionListener e) {
+ txFieldChat.addActionListener(e);
+ }
+}
diff --git a/src/GUI/chatController.java b/src/GUI/chatController.java
new file mode 100644
index 0000000..43e9ab3
--- /dev/null
+++ b/src/GUI/chatController.java
@@ -0,0 +1,60 @@
+package GUI;
+
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import javaChat.ClientConnection;
+import java.io.IOException;
+import javax.swing.text.View;
+
+/**
+ *
+ * @author abdulnursahid
+ */
+public class chatController implements ActionListener{
+ private ChatView view;
+ private ClientConnection client;
+
+ public chatController() {
+ view = new ChatView();
+ view.setVisible(true);
+ view.addListener(this);
+ client = null;
+ }
+
+ public class WriteOutput extends Thread{
+
+ public void run(){
+ String inputan;
+ try {
+ while((inputan = client.readStream()) != null){
+ view.setTxAreaChat(inputan);
+ }
+ } catch (Exception e) {
+ System.out.println("Error");
+ }
+ }
+ }
+
+ public void actionPerformed(ActionEvent ae){
+
+ Object source = ae.getSource();
+
+ if (source.equals(view.getTxFieldChat())){
+ if (client == null){
+ try {
+ client = new ClientConnection();
+ String ip = view.getStringChat();
+ client.connect(ip);
+ WriteOutput w = new WriteOutput();
+ w.start();
+ } catch (Exception e) {
+ System.out.println("Error");
+ }
+ }else{
+ String input = view.getStringChat();
+ client.writeStream(input);
+ view.setTxFieldChat("");
+ }
+ }
+ }
+}