1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
public void connexionversdonneur()throws IOException
{
String host="127.0.0.1";
donsoc = new Socket (host , 2000) ;
OutputStream ecriture = donsoc.getOutputStream() ;
System.out.println("demandeduclient");
PrintWriter out = new PrintWriter(ecriture);
out.println("demandeduclient");
out.flush();
}
public void reception () throws IOException
{
while (true)
{
soc= sersoc.accept();
InputStream lecture= soc.getInputStream ();
BufferedReader entree = new BufferedReader (new InputStreamReader (lecture)) ;
String message =entree.readLine();
System.out.println(message);
if (message.equals("demande"))
{
String host="127.0.0.1";
donsoc = new Socket (host , 2000) ;
OutputStream ecriture = donsoc.getOutputStream() ;
System.out.println("demandeduclient");
PrintWriter out = new PrintWriter(ecriture);
out.println("demandeduclient");
out.flush();
}
}
} |
Partager