2

大家好,我对 UDP 和数据报有点问题。我应该创建一个服务器,它将从客户端获取请求以在同一目录中发送文件。然后 UDP 服务器将获取此文件(视频),将其放入数据报并发送。我想我知道该怎么做,但我不能把文件放在数据报中。我把它放在二进制形式,所以请记住这一点。

到目前为止,这是我的代码:编辑:顺便说一下,这是服务器,我一直遇到 BufferedInputReader 和 OutputReader 的问题,所以请记住这一点:)

   Scanner inFromUser = new Scanner(System.in);
    int port = 12345;
    DatagramSocket server = new DatagramSocket(port);
  // Read name of file supplied by client (must be a line of text):
    Scanner in = new Scanner(new DataInputStream(server.getInputStream()));
    String filename = in.nextLine();
    DatagramSocket request = server.accept();


    // Create buffer, then we're ready to go:
    // Puts file into binary form
        BufferedInputStream inbinary = 
                new BufferedInputStream(new FileInputStream("poop.txt"));
   // Outputs the binary form
        BufferedOutputStream outbinary = 
                new BufferedOutputStream(request.getOutputStream());

    int numbytes;
    int countblocks = 0;
    int countbytes = 0;
    byte[] buf = new byte[1024];
    DatagramPacket packet = new DatagramPacket(buf, buf.length, port);
    server.receive(packet);

    while ((numbytes = inbinary.read(buf,0,1024)) >= 0)
    {
     // receive packet from client, telling it to send the video file
     server.receive(packet);
     InetAddress address = packet.getAddress();
     packet = new DatagramPacket(buf, buf.length, address, port);
     server.send(packet);
     countblocks++;          // keep statistics on file size
     countbytes += numbytes;
     outbinary.write(buf,0,numbytes); // write buffer to socket
    }
      outbinary.flush(); // FLUSH THE BUFFER
      server.close(); // done with the socket
      System.out.println(countblocks + " were read; " + countbytes + " bytes");
    }
  }
4

1 回答 1

2
于 2009-11-18T03:03:21.417 回答