2

こんにちは、UDP とデータグラムで少し問題があります。クライアントから同じディレクトリにファイルを送信する要求を受け取るサーバーを作成することになっています。次に、UDP サーバーはこのファイル (ビデオ) を取得し、データグラムに入れて送信します。方法はわかっていると思いますが、ファイルをデータグラムに入れることができません。バイナリ形式で入れているので、覚えておいてください。

これまでの私のコードは次のとおりです: 編集: これはちなみにサーバーです。

   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 に答える