Enviar archivo del servidor Python al cliente Java

Estoy tratando de enviar archivos desde un servidor Python al cliente Java a través de un socket TCP. Esto es lo que tengo hasta ahora:

Cliente Java (tenga en cuenta que todo el código de transferencia de archivos está en el método getFile ()):

public class Client1
{
    private Socket socket = null;
    private FileOutputStream fos = null;
    private DataInputStream din = null;
    private PrintStream pout = null;
    private Scanner scan = null;

    public Client1(InetAddress address, int port) throws IOException
    {
        System.out.println("Initializing Client");
        socket = new Socket(address, port);
        scan = new Scanner(System.in);
        din = new DataInputStream(socket.getInputStream());
        pout = new PrintStream(socket.getOutputStream());
    }

    public void send(String msg) throws IOException
    {
        pout.print(msg);
        pout.flush();
    }

    public void closeConnections() throws IOException
    {
        // Clean up when a connection is ended
        socket.close();
        din.close();
        pout.close();
        scan.close();
    }

    // Request a specific file from the server
    public void getFile(String filename)
    {
        System.out.println("Requested File: "+filename);
        try {
            File file = new File(filename);
            // Create new file if it does not exist
            // Then request the file from server
            if(!file.exists()){
                file.createNewFile();
                System.out.println("Created New File: "+filename);
            }
            fos = new FileOutputStream(file);
            send(filename);

            // Get content in bytes and write to a file
            int counter;
            byte[] buffer = new byte[8192];
            while((counter = din.read(buffer, 0, buffer.length)) != -1)
            {
                fos.write(buffer, 0, counter);
            }                }
            fos.flush();
            fos.close();

        } catch (IOException e) {
            e.printStackTrace();
        }

    }
}

Y el servidor Python:

import socket

host = '127.0.0.1'
port = 5555

# Create a socket with port and host bindings
def setupServer():
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    print("Socket created")
    try:
        s.bind((host, port))
    except socket.error as msg:
        print(msg)
    return s


# Establish connection with a client
def setupConnection():
    s.listen(1)     # Allows one connection at a time
    print("Waiting for client")
    conn, addr = s.accept()
    return conn


# Send file over the network
def sendFile(filename, s):
    f = open(filename, 'rb')
    line = f.read(1024)

    print("Beginning File Transfer")
    while line:
        s.send(line)
        line = f.read(1024)
    f.close()
    print("Transfer Complete")


# Loop that sends & receives data
def dataTransfer(conn, s, mode):
    while True:
        # Send a File over the network
        filename = conn.recv(1024)
        filename = filename.decode(encoding='utf-8')
        filename.strip()
        print("Requested File: ", filename)
        sendFile(filename, s)
        break
    conn.close()


s = setupServer()
while True:
    try:
        conn = setupConnection()
        dataTransfer(conn, s, "FILE")
    except:
        break

Pude crear con éxito un programa de mensajería entre el servidor y el cliente donde pasaron las cadenas entre sí. Sin embargo, no he podido transferir archivos a través de la red.

Parece que el servidor Python está enviando los bytes correctamente, por lo que el lado de Java parece ser el problema. Particularmente el ciclo while:while((counter = din.read(buffer, 0, buffer.length)) != -1) ha estado dando una salida de-1 entonces la escritura del archivo nunca se lleva a cabo.

Gracias de antemano por la ayuda!

Respuestas a la pregunta(1)

Su respuesta a la pregunta