-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
170 additions
and
62 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
public class Main { | ||
public static void main(String[] args){ | ||
User user1 = new User("elyes"); | ||
|
||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import java.io.IOException; | ||
import java.net.*; | ||
import java.util.ArrayList; | ||
import java.util.Date; | ||
|
||
import static java.lang.Thread.sleep; | ||
|
||
public class User { | ||
private String pseudo; | ||
private static DatagramSocket socketEnvoi; | ||
private static DatagramSocket socketEcoute; | ||
private ArrayList<String> listUser; | ||
private static boolean firstMsg = false; | ||
|
||
|
||
public User(String pseudo){ | ||
listUser = new ArrayList<>(); | ||
try { | ||
this.socketEnvoi = new DatagramSocket(); | ||
|
||
this.socketEcoute = new DatagramSocket(45047); | ||
} | ||
catch (SocketException e) { | ||
e.printStackTrace(); | ||
} | ||
this.pseudo = pseudo; | ||
|
||
System.out.println("J'ai crée un utilisateur ; son pseudo est : " + pseudo ); | ||
Thread threadSend = new ThreadSend("thread send"); | ||
threadSend.start(); | ||
|
||
Thread threadReceive = new ThreadReceive("thread receive"); | ||
threadReceive.start(); | ||
|
||
} | ||
|
||
public String getPseudo(){ | ||
return this.pseudo; | ||
} | ||
|
||
public void setPseudo(String pseudo){ | ||
this.pseudo = pseudo; | ||
} | ||
@Override | ||
public String toString() { | ||
return this.pseudo; | ||
} | ||
|
||
public static DatagramSocket getSocketEnvoi(){ | ||
return socketEnvoi; | ||
} | ||
|
||
public static DatagramSocket getSocketEcoute(){ | ||
return socketEcoute; | ||
} | ||
|
||
|
||
|
||
|
||
} |