- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 FTP4j,我想用 FTP 服务器的根目录填充 JTree。我尝试过使用 FTP4j 的 currentDirectory() 方法,但只返回一个“/”,这没有用。我还尝试将 ftp://url 传递给初始化 JTree 的方法,但这也不起作用。这是我的第一个 Swing 程序,所以我有点不知道该去哪里。这是代码:
package net.emptybox.ui;
import java.awt.EventQueue;
import javax.swing.JFrame;
import net.miginfocom.swing.MigLayout;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JLabel;
import javax.swing.JTextField;
import java.awt.FlowLayout;
import java.awt.BorderLayout;
import javax.swing.BoxLayout;
import javax.swing.JSplitPane;
import javax.swing.JSeparator;
import javax.swing.JTree;
import javax.swing.JTextArea;
import java.awt.Component;
import java.io.File;
import net.emptybox.ui.FTP;
import javax.swing.Box;
import javax.swing.event.TreeSelectionEvent;
import javax.swing.event.TreeSelectionListener;
import javax.swing.JScrollPane;
import javax.swing.ScrollPaneConstants;
public class GUI {
static JFrame frame;
static private JSplitPane splitPane;
static private JLabel lblServer;
static private JTextField serverField;
static private JLabel lblPort;
static private JTextField portField;
static private JLabel lblUsername;
static private JTextField usernameField;
static private JLabel lblPassword;
static private JTextField passwordField;
static private JButton connectButton;
static private JSeparator separator;
static private JTextArea detailArea;
static private JButton downloadButton;
static private JButton uploadButton;
static private Component horizontalGlue;
static private JTextField fileField;
static private JButton goButton;
static private Component horizontalGlue_1;
static FileSystemModel fileSystemModel;
static JLabel consoleLabel;
private static Component verticalGlue;
private static JScrollPane scrollPane;
static JTree fileTree;
/**
* Launch the application.
*/
/**
* Create the application.
*/
public GUI() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
public static void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 648, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(new MigLayout("", "[grow]", "[][][][grow][]"));
lblServer = new JLabel("Server:");
frame.getContentPane().add(lblServer, "flowx,cell 0 0");
consoleLabel = new JLabel("");
frame.getContentPane().add(consoleLabel, "flowx,cell 0 1");
separator = new JSeparator();
frame.getContentPane().add(separator, "cell 0 2");
splitPane = new JSplitPane();
splitPane.setOneTouchExpandable(true);
splitPane.setContinuousLayout(true);
frame.getContentPane().add(splitPane, "cell 0 3,grow");
detailArea = new JTextArea();
detailArea.setEditable(false);
splitPane.setRightComponent(detailArea);
scrollPane = new JScrollPane();
scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
splitPane.setLeftComponent(scrollPane);
serverField = new JTextField();
frame.getContentPane().add(serverField, "cell 0 0,growx");
lblPort = new JLabel("Port:");
frame.getContentPane().add(lblPort, "cell 0 0");
portField = new JTextField();
frame.getContentPane().add(portField, "cell 0 0,growx");
lblUsername = new JLabel("Username:");
frame.getContentPane().add(lblUsername, "cell 0 0");
usernameField = new JTextField();
frame.getContentPane().add(usernameField, "cell 0 0,growx");
lblPassword = new JLabel("Password:");
frame.getContentPane().add(lblPassword, "cell 0 0");
passwordField = new JTextField();
frame.getContentPane().add(passwordField, "cell 0 0,growx");
connectButton = new JButton("Connect");
frame.getContentPane().add(connectButton, "cell 0 0");
if (serverField.getText() == null || usernameField.getText() == null || passwordField.getText() == null) {
connectButton.disable();
} else {
connectButton.enable();
}
if (portField.getText() == null) {
portField.setText("21");
}
connectButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
FTP.connect(serverField.getText(), portField.getText(), usernameField.getText(), passwordField.getText());
}
});
downloadButton = new JButton("Download");
frame.getContentPane().add(downloadButton, "flowx,cell 0 4");
downloadButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
}
});
uploadButton = new JButton("Upload");
frame.getContentPane().add(uploadButton, "cell 0 4");
uploadButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
}
});
horizontalGlue_1 = Box.createHorizontalGlue();
frame.getContentPane().add(horizontalGlue_1, "cell 0 4,growx");
fileField = new JTextField();
frame.getContentPane().add(fileField, "cell 0 4");
fileField.setColumns(200);
goButton = new JButton("Go");
goButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
}
});
frame.getContentPane().add(goButton, "cell 0 4");
horizontalGlue = Box.createHorizontalGlue();
frame.getContentPane().add(horizontalGlue, "cell 0 4,alignx leading");
verticalGlue = Box.createVerticalGlue();
frame.getContentPane().add(verticalGlue, "cell 0 1");
}
private String getFileDetails(File file) {
if (file == null)
return "";
StringBuffer buffer = new StringBuffer();
buffer.append("Name: " + file.getName() + "\n");
buffer.append("Path: " + file.getPath() + "\n");
buffer.append("Size: " + file.length() + "\n");
return buffer.toString();
}
public static void populateTree(String directory) {
fileSystemModel = new FileSystemModel(new File(directory));
fileTree = new JTree(fileSystemModel);
scrollPane.setViewportView(fileTree);
}
}
当与服务器成功建立连接并且用户已登录时,另一个类将调用填充树。
最佳答案
您将想要创建自己的 TreeModel。
用户成功连接后,您需要查询站点以获取更多信息,默认实现中没有可用的模型可以完成您想要的操作,您必须为此工作;)
让我们从 FTP 端开始。
String current = ftpSite.getCurrentDirectory(); // Just in case you want to come back
ftpSite.changeDirectort("/"); // Move to the root directory
FPTFile[] fileList = ftpSite.list(); // Get the list of files.
现在,如何处理这件事取决于你自己。但基本上,我会构造一个 MutableTreeNode 作为根节点(对于 JTree)。
从那里您可以根据需要向根添加新的 (MutableTreeNode) 节点。
您可以查看http://www.jroller.com/Thierry/entry/swing_lazy_loading_in_a了解有关如何实现这一切的更多想法。
关于java - 如何使用 FTP 目录填充 JTree?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11401131/
根据 FTP 协议(protocol)(rfc 959),当 ftp 客户端连接到 ftp 服务器时,应该在 ftp 客户端和 ftp 服务器之间建立控制连接。而当ftp客户端发送{LIST, R
是否可以使用 FTP 命令重命名 FTP 服务器上的文件夹? 我知道有一个用于文件重命名的 Rename 命令,但是我可以将它用于文件夹名称吗? 最佳答案 AFAIK,相同的命令( RNFR/RNTO
我有一个 ftp://host/path URL,我想下载文件并在 Erlang 中连接丢失时继续下载。 使用 ftp 开始下载非常简单模块,但如何恢复它? 最佳答案 是的..就像 Peer 提到的.
我一直在阅读 FTP 规范并使用 Wireshark 来捕获我的 FTP 客户端发送/接收的数据包,并有一些关于它们的问题。 首先是来自我的 FTP 服务器的“连接问候语”(如 FTP RFC 所称)
我有一个 ColdFusion 应用程序,用于在开发和生产服务器之间传输文件。实际发送文件的代码如下: ftp = new Ftp(); ftp.setUsername(username); ftp.
我正在尝试连接到允许匿名访问的 FTP 服务器,但我不知道如何指定执行此操作所需的适当用户名/密码。 我尝试过使用匿名/匿名作为用户/通行证,但没有成功,以及空字符串和两者的各种组合等。 这一定是我所
ftp rstatus $remotefile 在Solaris 上出现“?无效命令”错误。我发现,与 HP-UX 不同,Solaris 10 上没有像 rstatus 这样的 ftp 命令。基本上在
我是 Spring 的新手,我目前正在研究 spring 与 ftp 支持的集成。 我从本地目录传输到服务器 (filZilla)。 我从服务器下载了文件,没问题。 但我想知道如何将文件从 FTP 服
我想通过加密连接 FTP,需要使用 PHP 代码通过 TLS 隐式 FTP。 我已经尝试使用普通 FTP 进行加密,它可以工作,但加密需要通过 TLS 的隐式 FTP 不起作用。 最佳答案 尝试使用下
我已经成功使用 LuaSocket 的 TCP 工具,但我在使用它的 FTP 模块时遇到了问题。尝试检索(小)文件时,我总是超时。我可以在被动模式下使用 Firefox 或 ftp 下载文件(在 Ub
我尝试使用 putty 使用 FTP 详细信息主机名、用户名和密码登录到服务器。但是当我输入密码时它显示拒绝访问。 对于我的另一个网站,我输入了我的主机名并单击在腻子中打开,它显示“网络错误:连接超时
只是我,还是 FTP 看起来有点过时?它看起来很慢而且效率低下,而且它已经有 30 多年的历史了,并不是所有的旧东西都是坏的 :) 有哪些协议(protocol)可能成为 FTP 的继任者? 我用过一
我有一个有点相关但不同的问题 here . 我有一个批处理脚本( *.bat 文件),例如: @ftp -i -s:"%~f0"&GOTO:EOF open ftp.myhost.com myuser
我正在使用 IBM Mainframe TSO 从数据集中查看文件。最近有人告诉我每天开始将最新一代的数据集通过 FTP 传输到我桌面上的文件夹中。问题是我的 FTP 脚本只允许我用我输入的确切名称
我正在尝试使用 atom 包“Remote-FTP”和私钥连接到我的服务器。 我在我的服务器上设置了 SSH key ,并且可以使用腻子成功连接。 私钥保存在我的项目文件夹中,我有一个现有的 .ftp
我的 ftp 文件夹中有一组文件。我只能访问 ftp 模式。我想将那些扩展名为 .txt 的文件重命名为 .done 例如: 1.txt, 2.txt, 3.txt 到 1.done, 2.done,
lcd 更改本地目录。 ls 列出远程目录上的文件。 我想要的是lls,列出本地目录上的文件。 这可能吗? 我知道我总是可以打开另一个终端来执行此操作,但我很懒! 最佳答案 是的: !dir ! 告诉
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 9 年前。 社区去年审查
我的 FTP 测试服务器有问题。我已经安装并配置了 FileZilla 服务器,它正在监听端口 21 上的控制连接,然后它可以在 50100 和 51100 之间的端口上提供被动模式数据连接。 我正在
我正在运行 Filezilla Server 0.9.45 beta 来远程管理我的服务器。设置完成后,我测试使用 IP 127.0.0.1 连接到它,并且工作成功。但是,为了远程连接到服务器,我将端
我是一名优秀的程序员,十分优秀!