diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..95832e8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/build/
+/dist/
\ 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..d6d76f6 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\\ASUS\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
diff --git a/src/javaChat/ChatView.form b/src/javaChat/ChatView.form
new file mode 100644
index 0000000..104895a
--- /dev/null
+++ b/src/javaChat/ChatView.form
@@ -0,0 +1,71 @@
+
+
+
diff --git a/src/javaChat/ChatView.java b/src/javaChat/ChatView.java
new file mode 100644
index 0000000..d16764c
--- /dev/null
+++ b/src/javaChat/ChatView.java
@@ -0,0 +1,139 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package javaChat;
+import java.awt.event.ActionListener;
+/**
+ *
+ * @author ASUS
+ */
+public class ChatView extends javax.swing.JFrame {
+
+ /**
+ * Creates new form ChatView
+ */
+ 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() {
+
+ txFieldChat = new javax.swing.JTextField();
+ jScrollPane1 = new javax.swing.JScrollPane();
+ txAreaChat = new javax.swing.JTextArea();
+
+ setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
+
+ txFieldChat.setText("jTextField1");
+
+ txAreaChat.setColumns(20);
+ txAreaChat.setRows(5);
+ txAreaChat.setText("Input Server IP Adress :");
+ jScrollPane1.setViewportView(txAreaChat);
+
+ javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
+ getContentPane().setLayout(layout);
+ layout.setHorizontalGroup(
+ layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
+ .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
+ .addContainerGap()
+ .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
+ .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 363, Short.MAX_VALUE)
+ .addComponent(txFieldChat))
+ .addContainerGap())
+ );
+ layout.setVerticalGroup(
+ layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
+ .addGroup(layout.createSequentialGroup()
+ .addContainerGap()
+ .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 209, javax.swing.GroupLayout.PREFERRED_SIZE)
+ .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
+ .addComponent(txFieldChat, javax.swing.GroupLayout.DEFAULT_SIZE, 31, Short.MAX_VALUE)
+ .addContainerGap())
+ );
+
+ pack();
+ }// //GEN-END:initComponents
+
+ /**
+ * @param args the command line arguments
+ */
+ public static void main(String args[]) {
+ /* Set the Nimbus look and feel */
+ //
+ /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
+ * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
+ */
+ try {
+ for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
+ if ("Nimbus".equals(info.getName())) {
+ javax.swing.UIManager.setLookAndFeel(info.getClassName());
+ break;
+ }
+ }
+ } catch (ClassNotFoundException ex) {
+ java.util.logging.Logger.getLogger(ChatView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
+ } catch (InstantiationException ex) {
+ java.util.logging.Logger.getLogger(ChatView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
+ } catch (IllegalAccessException ex) {
+ java.util.logging.Logger.getLogger(ChatView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
+ } catch (javax.swing.UnsupportedLookAndFeelException ex) {
+ java.util.logging.Logger.getLogger(ChatView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
+ }
+ //
+
+ /* Create and display the form */
+ java.awt.EventQueue.invokeLater(new Runnable() {
+ public void run() {
+ new ChatView().setVisible(true);
+ }
+ });
+ }
+
+ // 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 setTxtAreaChat (String message) {
+ txAreaChat.append(message + "\n");
+ }
+
+ public Object getTxtFieldChat() {
+ return txFieldChat.getText();
+ }
+
+ public String getStringChat() {
+ return txFieldChat.getText();
+ }
+
+ public void setTxFieldChat (String message) {
+ this.txFieldChat.setText (message);
+ }
+
+ public void addListener(ActionListener e) {
+ txFieldChat.addActionListener(e);
+ }
+
+ void ActionListener(JChatController aThis) {
+ throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
+ }
+
+ void settxAreaChat(String inputan) {
+ throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
+ }
+
+ Object gettxFieldChat() {
+ throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
+ }
+}
+
diff --git a/src/javaChat/ConnectionThread.java b/src/javaChat/ConnectionThread.java
new file mode 100644
index 0000000..b23cd95
--- /dev/null
+++ b/src/javaChat/ConnectionThread.java
@@ -0,0 +1,52 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package javaChat;
+
+/**
+ *
+ * @author ASUS
+ */
+
+import java.io.IOException;
+import java.net.Socket;
+import javaChat.Connection;
+
+public class ConnectionThread extends Thread {
+ private Socket client;
+ private Connection connection;
+
+ public ConnectionThread(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 client 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/javaChat/ConsoleApplication.java b/src/javaChat/ConsoleApplication.java
new file mode 100644
index 0000000..64073a0
--- /dev/null
+++ b/src/javaChat/ConsoleApplication.java
@@ -0,0 +1,64 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package javaChat;
+
+/**
+ *
+ * @author ASUS
+ */
+public class ConsoleApplication {
+ 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/javaChat/DriverClient.java b/src/javaChat/DriverClient.java
new file mode 100644
index 0000000..ba626c3
--- /dev/null
+++ b/src/javaChat/DriverClient.java
@@ -0,0 +1,14 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package javaChat;
+
+/**
+ *
+ * @author ASUS
+ */
+public class DriverClient {
+
+}
diff --git a/src/javaChat/DriverClientGui.java b/src/javaChat/DriverClientGui.java
new file mode 100644
index 0000000..68ffabb
--- /dev/null
+++ b/src/javaChat/DriverClientGui.java
@@ -0,0 +1,17 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package javaChat;
+
+/**
+ *
+ * @author ASUS
+ */
+public class DriverClientGui {
+ public static void main(String[] args) {
+ JChatController jcc = new JChatController();
+ }
+}
+
diff --git a/src/javaChat/DriverServer.java b/src/javaChat/DriverServer.java
new file mode 100644
index 0000000..de810af
--- /dev/null
+++ b/src/javaChat/DriverServer.java
@@ -0,0 +1,28 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package javaChat;
+
+/**
+ *
+ * @author ASUS
+ */
+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) {
+ ConnectionThread connection = new ConnectionThread(server.getClient());
+ connection.start();
+ }
+ } catch (Exception e) {
+ System.out.println("Error");
+ }
+ }
+}
diff --git a/src/javaChat/JChatController.java b/src/javaChat/JChatController.java
new file mode 100644
index 0000000..b565e5d
--- /dev/null
+++ b/src/javaChat/JChatController.java
@@ -0,0 +1,68 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package javaChat;
+
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+
+/**
+ *
+ * @author ASUS
+ */
+public class JChatController implements ActionListener{
+
+ private ChatView view;
+ private ClientConnection client;
+
+ public JChatController() {
+ view = new ChatView();
+ view.setVisible(true);
+ view.ActionListener(this);
+ client = null;
+ }
+
+ @Override
+ public void actionPerformed(ActionEvent e) {
+ throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
+ }
+
+ 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 actionPermormed(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("");
+ }
+ }
+ }
+}