简要说明:
我的应用程序将文件从服务器端发送到客户端,然后客户端选择文件名和扩展名,以便客户端查看我编写的文件列表,列出文件的方法可在服务器上找到。
虽然该方法有效,但我需要将文件名发送到客户端并将其插入JPanel
并在那里列出,以便用户可以选择他想要的文件。
这是我在服务器端的方法:
public static void listfile() {
String path = "C:/SAVE";
String files;
File folder = new File(path);
File[] listOfFiles = folder.listFiles();
for (int i = 0; i < listOfFiles.length; i++)
{
if (listOfFiles[i].isFile())
{
files = listOfFiles[i].getName();
System.out.println(files);
}
}
}
如何修改它以便在调用时将文件列表发送到客户端。
答案 0 :(得分:1)
如果使用tcp连接,则服务器可以实现名为“listFiles”的命令。当它收到此命令时,它应该向客户端发送文件列表。
客户端应连接到服务器,发送命令“listFiles”,读取服务器发送的文件列表并将其显示在其JPanel上。
假设您有一个简单的单线程服务器,其格式如下:
class Server
{
public void run()
{
ServerSocket server = new ServerSocket(<portno>);
Socket socket = server.accept();
InputStream in = socket.getInputStream(); // for reading the command
OutputStream out = socket.getOutputStream(); // for writing out the list
// Now read the argument from in, say the result is in variable "cmd"
if("listFiles".equals(cmd))
{
// invoke your list files logic, and instead of writing to the console
// write it to out
}
}
}
您的客户应遵循以下模式:
class Client
{
public void getList()
{
Socket client = new Socket(<portno>);
InputStream in = client.getInputStream(); // to read in the file list
OutputStream out = client.getOutputStream(); // to send the listFiles command
// Write the listFiles command to out
// Read in the list of files from in
// Update your JPanel with the list
}
}
我遗漏了实际的阅读和写入套接字,但你会明白这一点。