「クライアントごとのスレッドとスレッドプールをそれぞれ使用して、USER と PASS に応答する FTP サーバーを実装する 2 つの Java プログラムを作成する」ことを試みています。提出する前に、すべてが整っていることを確認しようとしています。これが私のソースコードです。私が抱えている唯一の問題は、「FTPProtocol client;」をどうするかを考え出すことです。thread.start を取得した後、それを破棄する必要がありますか?
FTPServer.java
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
public class FTPserver
{
public static void main(String [] args)
{
if (args.length != 1)
throw new IllegalArgumentException( "Parameter(s): <Port>");
int threadPoolSize = 10;
int port = Integer.parseInt(args[0]);
final ServerSocket server;
try
{
server = new ServerSocket(port);
}
catch (IOException e1)
{
return;
}
for (int i = 0; i < threadPoolSize; i++)
{
Thread thread = new Thread()
{
public void run()
{
while (true)
{
try
{
Socket sock = server.accept();
FTPProtocol client = new FTPProtocol(sock);
}
catch (IOException e)
{
System.err.println(e.getMessage());
return;
}
}
}
};
thread.start();
}
}
}
FTPプロトコル.java
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;
class FTPProtocol implements Runnable
{
static String greeting = "220 Service Ready.\r\n";
static String needPassword = "331 User name ok, need password.\r\n";
static String closing = "421 Service not available, closing control connection.\r\n";
static byte[] reply220 = null;
static byte[] reply331 = null;
static byte[] reply421 = null;
Socket sock = null;
public FTPProtocol(Socket so)
{
sock = so;
reply220 = greeting.getBytes();
reply331 = needPassword.getBytes();
reply421 = closing.getBytes();
}
public void run()
{
handleFTPClient(sock);
}
void handleFTPClient(Socket sock)
{
InputStream is = null;
OutputStream os = null;
byte[] inBuffer = new byte[1024];
try
{
is = sock.getInputStream();
os = sock.getOutputStream();
os.write(reply220);
int len = is.read(inBuffer);
System.out.write(inBuffer, 0, len);
os.write(reply331);
len = is.read(inBuffer);
System.out.write(inBuffer, 0, len);
os.write(reply421);
sock.close();
}
catch (IOException e)
{
System.err.println(e.getMessage());
return;
}
}
}