Allora ho fatto in questo modo ma quando lo mando in esecuzione scrivo la prima frase(cioè il messaggio del client) e poi non succede più niente.
import java.io.IOException;
import java.io.PrintStream;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.Scanner;
public class Chat_ClientTCP {
/**
* @param args
* @throws IOException
* @throws UnknownHostException
*/
public static void main(String[] args) throws UnknownHostException, IOException {
// TODO Auto-generated method stub
String msg, msg2;
byte status = 1;
Socket clientSocket = new Socket("127.0.0.1", 6789);
ChatHandler c = new ChatHandler(clientSocket, status);
c.handle();
clientSocket.close();
}
}
import java.io.IOException;
import java.io.PrintStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.Scanner;
public class Chat_ServerTCP {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
byte status = 3;
ServerSocket welcomeSocket = new ServerSocket(6789);
Socket connectionSocket = welcomeSocket.accept();
ChatHandler c = new ChatHandler(connectionSocket, status);
c.handle();
connectionSocket.close();
}
}
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
import java.net.Socket;
import java.util.Scanner;
public class ChatHandler implements ProtocolHandler {
private Socket socket;
private byte status;
public ChatHandler(Socket s, byte status) {
this.socket = s;
this.status = status;
}
@Override
// ha bisogno di una socket come parametro e ha bisogno dello stato
public void handle() {
try {
while(status != 0) {
String msg;
String msg2;
switch(status) {
case 1: // client scrive
System.out.print("Scrive Client: ");
Scanner scriveClient = new Scanner(System.in);
msg = scriveClient.nextLine();
PrintStream outToServer = new PrintStream(socket.getOutputStream());
outToServer.println(msg); // il messaggio viene mandato al server
status = 4;
break;
case 2: // client legge
Scanner leggeServer = new Scanner (socket.getInputStream());
msg2 = leggeServer.nextLine();
System.out.println("Server dice: " + msg2);
status = 1;
break;
case 3: // server scrive
System.out.print("Scrive Server: ");
Scanner scriveServer = new Scanner(System.in);
msg = scriveServer.nextLine();
PrintStream outToClient = new PrintStream(socket.getOutputStream());
outToClient.println(msg);
status = 2;
break;
case 4: // server legge
Scanner leggiClient = new Scanner(socket.getInputStream());
msg2 = leggiClient.nextLine();
System.out.println("Client dice: " + msg2);
status = 3;
break;
}
}} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}}
public interface ProtocolHandler {
public void handle();
}
Secondo me è una stupidagine l'errore che commetto,magari se qualcuno mi da una mano a capire cosa sbaglio gli sarei grato.