您好我正在尝试使用UDP从客户端向服务器发送1 kb的数据包。我可以收到所有的数据包,但问题是while循环没有退出所以我使用套接字超时来实现这一点。因为这不适合动态环境我想要替换一些明智的东西。下面是我的服务器端和客户端端代码,客户端跟随服务器端来自while循环。我只想实现RDT 1.0,其中数据包被分成1kb并通过UDP套接字发送以在另一端接收。但是在接收所有1kb数据包时,我已经尝试了很多东西来退出while循环,最后在接收端设置了套接字超时。此外,我宣布'我'(我<9知道我的文件大小)退出循环,以便在超时之前执行其余的编码。有一种方法我可以改变我的while循环,以便它适合所有环境(发送N个数据包)。
//Client side
class Client
{
public static DatagramSocket sock =null;
public static FileInputStream in=null;
public static DatagramPacket[] sendpacket=new DatagramPacket[1024];
public static void main(String[] args) throws Exception
{
byte[] array = new byte[1024];
DatagramSocket sock = new DatagramSocket();
InetAddress ip= InetAddress.getByName("localhost");
Scanner scanner = new Scanner(System.in);
System.out.println("Enter a file name: ");
System.out.flush();
String filename = scanner.nextLine();
File file = new File(filename);
in=new FileInputStream(file);
int length =0,checksum=0,h=1;
while((length = in.read(array))!=-1)
{
sendpacket[h]=new DatagramPacket(array,array.length,ip,1234);
sock.send(sendpacket[h]);
checksum+=length;
System.out.println("Sent packet "+h);
System.out.println(length);
System.out.println(checksum);
h++;
}
in.close();
}
}
//Server side
public class server
{
public static DatagramPacket[] recvpacket=new DatagramPacket[100];
public static DatagramSocket sock=null;
public static FileOutputStream fos=null;
public static BufferedOutputStream bos=null;
public static void main(String args[])
{
try
{
try
{
sock=new DatagramSocket(1234);//opening a socket
}
catch(IOException ex)
{
System.out.println(ex);
}
sock.setSoTimeout(30000);
boolean socketalive=true;
byte[] array=new byte[1024];
int i=1,checksum=0;
System.out.println("server is ready to receive packets");
while(recvpacket!=null)//I need change in this loop
{
recvpacket[i]=new DatagramPacket(array,array.length);
sock.receive(recvpacket[i]);
System.out.println("server received packet "+i);
int length=array.length;
checksum+=length;
System.out.println(length);//here i get the size of the buffer so //checksum is wrong
System.out.println(checksum);
fos=new FileOutputStream(new File("profile1.docx"),true);
fos.write(array);
for(int j=0; j<1024; j++)
{
array[j]=0;
}
i++;
}//while
System.out.println("server received packet "+i);
}//try
catch(IOException e)
{
System.out.println(e);
}
}//main
}//class
答案 0 :(得分:1)
您可能会遇到一些问题。 UDP不像TCP那样可靠,因此数据包可能会被丢弃,或者更糟糕的可能会出现顺序错误。在将数据写入文件之前,您需要将数据存储在本地缓冲区中,或者将其写入文件中的适当位置(可能会留下一个丢失的空间)。
理想情况下,UDP侦听循环应该在自己的线程中,以便可以运行其他代码。如果要在UDP上实现某种FTP,则需要在开始时发送包含传输信息的数据包,例如大小,数据包数,校验和。然后,对于每个数据包,您还需要包含序列号和单个数据包的校验和。在最后(或沿途),服务器需要回复请求丢失/损坏的数据包的客户端。我建议最后发送一个“传输完成”数据包。
如果所有数据包都已收到且未损坏,则可以终止循环!
您应该能够找到能够为您处理所有这些内容的现有内容,而不是从头开始编写所有内容,但如果您必须自己编写,那么您必须复制TCP的开销。