クライアントを使用してサーバー上のファイルを参照できるRMIサーバー/クライアントシステムが必要です。この場合、サーバーはDebianであり、クライアントはWindows上で実行されます。
File
現在表示されているディレクトリを指すオブジェクトをサーバーに保持させ、そのディレクトリ内のすべてのファイルをList
クライアントに表示しようとしました。
問題は、私が返すメソッドを呼び出すとfile.listFiles()
、サーバーではなくクライアントでファイルを取得するFileNotFoundException
か、サーバーがクライアントで実行されるかのように取得することです。Java File
APIは、サーバーではなく、クライアントが実行されているコンピューターのルートディレクトリを使用しているようです。
もっと簡単に言うと、サーバーのファイルシステムを表示するクライアントのファイルエクスプローラーが必要です。
編集:
public class ClientMain {
/**
* @param args
*/
public static void main(String[] args) {
if (System.getSecurityManager() == null) {
System.setSecurityManager(new SecurityManager());
}
View view = new View();
view.setVisible(true);
try {
String name = "Remote";
Registry registry = LocateRegistry.getRegistry("127.0.0.1");
IRemote model = (IRemote) registry.lookup(name);
view.setModel(model);
view.update();
} catch (Exception e) {
System.err.println("Remote Exception");
e.printStackTrace();
}
}
}
public class View extends JFrame implements IView{
JList list;
IRemote model;
public View() {
super();
this.setVisible(true);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
list = new JList();
this.add(list);
}
public IRemote getModel() {
return model;
}
public void setModel(IRemote model) {
this.model = model;
}
public void update(){
try {
this.list.setListData(model.getFileList());
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public interface IRemote extends Remote {
public String[] getFileList() throws RemoteException;
}
public class Model implements IRemote{
File current;
public Model() {
super();
current = new File(".");
}
public String[] getFileList() {
return current.list();
}
public void setCurrentDirectory(String current) {
this.current = new File(current);
}
}
public class ServerMain {
public static void main(String[] args) {
new ServerMain();
}
public ServerMain() {
super();
Model model = new Model();
if (System.getSecurityManager() == null) {
System.setSecurityManager(new SecurityManager());
}
try {
String name = "Remote";
IRemote stub = (IRemote) UnicastRemoteObject.exportObject(model, 0);
Registry registry = LocateRegistry.getRegistry();
registry.rebind(name, stub);
} catch (Exception e) {
System.err.println("Controller exception:");
e.printStackTrace();
}
}
}
これが私がやろうとしていることです。ここで、サーバーはモデルをレジストリにバインドします。クライアントはモデルを検索し、モデルをビューに渡し、ビューはモデルからgetFileList()を呼び出します。とともに "。" ファイルプログラムが配置されているディレクトリを取得します。相対的なものなので、クライアントプログラムが実行されているクライアント上のすべてのファイルを取得します。非相対ディレクトリを使用すると、クライアントにこのパスがないため、FileNotFoundExceptionが発生します。それがさらに明確になることを願っています。