我做了一些搜索,但我没有发现任何相关信息。
我计划为我的服务器编写一个完整的远程工具,用java编码。我已经成功地将文件发送到服务器,但现在我想使用文件浏览器列出并获取所有文件。我知道如何制作一个本地jFileChooser,但它是否可以使它远程?
我用套接字连接到我的服务器。
感谢。
答案 0 :(得分:4)
实际上已经有人在sourceforge上制作了你正在尝试和托管的内容。您也可以获得源代码。查看vfsjfilechooser
要获得vjsfilechooser方法和JFileChooser API的比较,您可以通读下面提到的URL。 http://www.loni.ucla.edu/twiki/bin/view/CCB/VFSBrowserProgrammersGuide?skin=plain&sortcol=1&table=1&up=1
答案 1 :(得分:1)
我不认为您可以将JFileChooser配置为远程,但您应该能够根据其代码编写自己的代码,甚至可以将其编写为子类。
如果您要编写一个类似Windows文件的选择器通常被认为更好。
您可以将其基于VFS或类似文件,以便它可以与任何文件系统一起使用。
答案 2 :(得分:1)
假设它是基于Web的应用程序,您希望从应用程序服务器中选择一个文件。检查这是否真的是一个不错的选择,因为我可以清楚地了解服务器文件结构。肯定存在安全威胁。
答案 3 :(得分:0)
package learnings;
import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.JSchException;
import com.jcraft.jsch.Session;
import com.jcraft.jsch.SftpException;
import java.util.Vector;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JFrame;
import javax.swing.JTree;
import javax.swing.tree.DefaultMutableTreeNode;
public class SimpleLinuxGUI {
String sshremotedir = "GiveRemoteDirectoryPath";
public static void cargarRTree(String remotePath, DefaultMutableTreeNode parent) throws SftpException, JSchException {
//todo: change "/" por remote file.separator
JSch jsch = new JSch();
Session session = null;
session = jsch.getSession(username, hostname, 22);
session.setConfig("StrictHostKeyChecking", "no");
session.setPassword(password);
session.connect();
Channel channel = session.openChannel("sftp");
channel.connect();
ChannelSftp sftpChannel = (ChannelSftp) channel;
Vector<ChannelSftp.LsEntry> list = sftpChannel.ls(remotePath); // List source directory structure.
System.out.println(list);
//Vector<ChannelSftp.LsEntry> list = sftpChannel
for (ChannelSftp.LsEntry oListItem : list) { // Iterate objects in the list to get file/folder names.
DefaultMutableTreeNode node = new DefaultMutableTreeNode(oListItem.getFilename());
if (!oListItem.getAttrs().isDir()) { // If it is a file (not a directory).
parent.add(node); // add as a child node
} else{
if (!".".equals(oListItem.getFilename()) && !"..".equals(oListItem.getFilename())) {
parent.add(node); // add as a child node
cargarRTree(remotePath + "/" + oListItem.getFilename(), node); // call again for the subdirectory
}
}
}
}
public static void main(String[] args) {
SimpleLinuxGUI slg = new SimpleLinuxGUI();
JFrame jf = new JFrame();
DefaultMutableTreeNode nroot = new DefaultMutableTreeNode(slg.sshremotedir);
try {
cargarRTree(slg.sshremotedir, nroot);
} catch (SftpException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (JSchException ex) {
Logger.getLogger(SimpleLinuxGUI.class.getName()).log(Level.SEVERE, null, ex);
}
JTree yourJTree = new JTree(nroot);
jf.add(yourJTree);
jf.setSize(640, 480);
jf.setVisible(true);
}
}
此代码将帮助您获取远程服务器中的文件和目录列表,然后在GUI中创建Jtree和显示。现在您可以通过添加动作侦听器和添加按钮来更改GUI以实现您的要求