サーバー/クライアントクラスを実装する宿題があります。これにより、1400バイトのパケットをサーバーに送信し、それらを応答として返します。スループットをkbit/sで混乱させる必要があり、サーバーによるタイムアウトが発生したときに出力する必要があります。しかし、問題は、Client-Classでスループットを計算し、Server-Classのtimeout-exceptionの「catchblock」に出力しようとしていることですが、この値は常に0.0として送信/出力されます。これは、クライアントクラスで印刷する場合には当てはまりません。静的get-methodを使用して、単純な静的変数を試してみましたが、機能しません。誰か助けてくれませんか?今日は00:00に返送しなければなりません!それは素晴らしいことだ!ありがとう!
package blatt6;
import java.io.*;
import java.net.*;
public class UDPClient
{
static double startTime;
static double endTime;
static double dauer;
static double paketGroesseKBit = (1400*8) / 1024;
private static double durchsatz;
public static void main(String args[])
{
DatagramSocket sock = null;
int port = 7777;
String s = "";
for (int i=0; i<1400; i++) {
s = s + 'b';
}
//BufferedReader cin = new BufferedReader(new InputStreamReader(System.in));
try
{
sock = new DatagramSocket();
InetAddress host = InetAddress.getByName("localhost");
int j=0;
while(j<4)
{
//take input and send the packet
echo("Enter message to send : ");
//s = (String)cin.readLine();
byte[] b = s.getBytes();
DatagramPacket dp = new DatagramPacket(b , b.length , host , port);
byte[] buffer = new byte[1400];
DatagramPacket reply = new DatagramPacket(buffer, buffer.length);
sock.send(dp);
startTime = System.nanoTime();
//buffer to receive incoming data
sock.receive(reply);
endTime = System.nanoTime();
dauer = endTime - startTime;
durchsatz = paketGroesseKBit / ((dauer/2) * Math.pow(10, -9));
//System.out.println(dauer);
j++;
// byte[] data = reply.getData();
// s = new String(data, 0, reply.getLength());
//
// //echo the details of incoming data - client ip : client port - client message
// echo(reply.getAddress().getHostAddress() + " : " + reply.getPort() + " - " + s);
}
}
catch(IOException e)
{
System.err.println("IOException " + e);
}
}
//simple function to echo data to terminal
public static void echo(String msg)
{
System.out.println(msg);
}
public static double getDurchsatz() {
return durchsatz;
}
}
ここでサーバー:
package blatt6;
import java.io.*;
import java.net.*;
public class UDPServer
{
static double durchy = UDPClient.getDurchsatz();
public static void main(String args[])
{
DatagramSocket sock = null;
int timeout = 5000;
try
{
//1. creating a server socket, parameter is local port number
sock = new DatagramSocket(7777);
sock.setSoTimeout(timeout);
//buffer to receive incoming data
byte[] buffer = new byte[1400];
DatagramPacket incoming = new DatagramPacket(buffer, buffer.length);
//2. Wait for an incoming data
echo("Server socket created. Waiting for incoming data...");
//communication loop
while(true)
{
sock.receive(incoming);
sock.send(incoming);
// byte[] data = incoming.getData();
// String s = new String(data, 0, incoming.getLength());
//
// //echo the details of incoming data - client ip : client port - client message
// echo(incoming.getAddress().getHostAddress() + " : " + incoming.getPort() + " - " + s);
// s = "OK : " + s;
//
// DatagramPacket dp = new DatagramPacket(s.getBytes() , s.getBytes().length , incoming.getAddress() , incoming.getPort());
// sock.send(dp);
}
}
catch(IOException e)
{
System.out.println(durchy);
System.err.println("IOException " + e);
}
}
//simple function to echo data to terminal
public static void echo(String msg)
{
System.out.println(msg);
}
}