当前位置:首页 » 文件管理 » ftp路径格式

ftp路径格式

发布时间: 2022-01-27 18:03:37

ftp访问url地址怎么写

您好,访问FTP资源格式:
ftp://IP地址:端口(默认是21,如果对端服务器提供的是21端口,可忽略不写)
ftp://域名:端口(默认是21,如果对端服务器提供的是21端口,可忽略不写)

Ⅱ FTP格式是什么

FTP空间就是设置了密码的,你没有密码当然不能进入,如果可以的话,那别人的FTP不是都危险了,谁都能近去了,那不乱了套了啊。你下载文件的FTP空间是别人设置了密码的。所以你进不去的。

Ⅲ 怎么将FTP中的目录都改成文件夹格式

1.点击“开始”,在对话框中输入“regedit”,然后回车,打开注册表编辑器。

2.依次点击
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\

3.继续点击
Internet
Explorer\MAIN\FeatureControl\FEATURE_INTERNET_SHELL_FOLDERS

4.双击屏幕右侧的“iexplorer.exe”,弹出编辑对话框。

5.将数值数据由0改为1,然后点击“确定”。

6.重新启动计算机后,再打开FTP网站,就可以直接用资源管理器来打开了。

Ⅳ win7下 FTP远程目录 填写格式

你的问题是不是在那儿输入ftp:// ,win7浏览器地址栏里如果登录ftp,打开的页面与XP打开的是有点不同,用户使用不直观,但是我们可以不用浏览器登录ftp,可以用计算机的窗口登录,双击打开计算机,在计算机地址栏里输入ftp://*******,就可以进入你所想要登录的ftp了,不知道我回答的是否是你的意思。

Ⅳ ftp 怎么在网站上填写路径

是要访问FTP么 ftp://地址 如ftp://202.106.21.10 或ftp://soso.com

Ⅵ 请教如何书写ftp格式的url

ftp://IP地址:户名@usepassword:密码/端口号/path/文件
是这样的
我一般连接是
在dos下
cmd,
ftp
ftp IP
提示用户名
密码
然后操作
当然你可以用专业的软件来连接
推荐leapftp

Ⅶ 关于ftp地址的格式

ftp://iLoveNetResource:!@)*(#!_@(#*[email protected]
iLoveNetResource为用户名
!@)*(#!_@(#*help为密码
10.22.0.89为地址
输入到ftp地址栏中为什么会上不去,可能是因为三个 “@”的问题。因为三个“@”的意义是不一样的
可以用命令行的ftp命令来登陆 ,方法如下:
ftp 10.22.0.89
接着用user iLoveNetResource
根据提示输入密码:!@)*(#!_@(#*help 就应该可以了
另外用ftp下载工具(如FlashFXP(里面有分开的地址框、用户框和密码框))也可以.
如果这样都不行,那就是ftp服务器本身的问题。与你无关!

Ⅷ ftp的路径怎么设置

问一下,你是想做ftp上传下载么?

首先你需要安装一个ftp服务端程序,启动起来,然后下载一个ftp客户端程序,测试能不能连接,首先这一块儿需要测试通过。
代码ftp上传下载
2.1 上传代码:
import java.io.File;
import java.io.FileInputStream;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPReply;

public class test {

private FTPClient ftp;
/**
*
* @param path 上传到ftp服务器哪个路径下
* @param addr 地址
* @param port 端口号
* @param username 用户名
* @param password 密码
* @return
* @throws Exception
*/
private boolean connect(String path,String addr,int port,String username,String password) throws Exception {
boolean result = false;
ftp = new FTPClient();
int reply;
ftp.connect(addr,port);
ftp.login(username,password);
ftp.setFileType(FTPClient.BINARY_FILE_TYPE);
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return result;
}
ftp.changeWorkingDirectory(path);
result = true;
return result;
}
/**
*
* @param file 上传的文件或文件夹
* @throws Exception
*/
private void upload(File file) throws Exception{
if(file.isDirectory()){
ftp.makeDirectory(file.getName());
ftp.changeWorkingDirectory(file.getName());
String[] files = file.list();
for (int i = 0; i < files.length; i++) {
File file1 = new File(file.getPath()+"\\"+files[i] );
if(file1.isDirectory()){
upload(file1);
ftp.changeToParentDirectory();
}else{
File file2 = new File(file.getPath()+"\\"+files[i]);
FileInputStream input = new FileInputStream(file2);
ftp.storeFile(file2.getName(), input);
input.close();
}
}
}else{
File file2 = new File(file.getPath());
FileInputStream input = new FileInputStream(file2);
ftp.storeFile(file2.getName(), input);
input.close();
}
}
public static void main(String[] args) throws Exception{
test t = new test();
t.connect("", "localhost", 21, "yhh", "yhhazr");
File file = new File("e:\\uploadify");
t.upload(file);
}
}
2.2 下载代码
这里没有用到filter,如果用filter就可以过滤想要的文件。

public class Ftp {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Ftp ftp = new Ftp();
String hostname = "www.strawberry.com";
Integer port = 21;
String username = "username";
String password = "password";
String remote = "/c.txt";
String local = "/home/tin/LeonChen/FTP/";
try {
ftp.connect(hostname, port, username, password);
System.out.println("接收状态:"+ftp.download(remote, local));
ftp.disconnect();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

private FTPClient ftpClient = new FTPClient();

/*
* * 连接到FTP服务器
* * @param hostname 主机名
* * @param port 端口
* * @param username 用户名
* * @param password 密码
* * @return 是否连接成功
* * @throws IOException
*/
private boolean connect(String hostname, int port, String username,
String password) throws IOException {
ftpClient.connect(hostname, port);
ftpClient.setControlEncoding("UTF-8");
if (FTPReply.isPositiveCompletion(ftpClient.getReplyCode())) {
if (ftpClient.login(username, password)) {
return true;
}
}
disconnect();
return false;
}

/*
* 从FTP服务器上下载文件,支持断点续传,上传百分比汇报
*
* @param remote 远程文件路径
*
* @param local 本地文件路径
*
* @return 上传的状态
*
* @throws IOException
*/
public DownloadStatus download(String remote, String local)
throws IOException {
// 设置被动模式
ftpClient.enterLocalPassiveMode();
// 设置以二进制方式传输
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
DownloadStatus result;
// 检查远程文件是否存在
FTPFile[] files = ftpClient.listFiles(new String(remote
.getBytes("UTF-8"), "iso-8859-1"));
if (files.length != 1) {
System.out.println("远程文件不存在");
return DownloadStatus.Remote_File_Noexist;
}
long lRemoteSize = files[0].getSize();
String fildName = files[0].getName();
// 本地存在文件,进行断点下载
File f = new File(local+fildName);
if (f.exists()) {
long localSize = f.length();
if (localSize >= lRemoteSize) {
System.out.println("本地文件大于远程文件,下载中止");
return DownloadStatus.Local_Bigger_Remote;
}

// 进行断点续传,并记录状态
FileOutputStream out = new FileOutputStream(f, true);
ftpClient.setRestartOffset(localSize);
InputStream in = ftpClient.retrieveFileStream(new String(remote.getBytes("UTF-8"), "iso-8859-1"));
byte[] bytes = new byte[1024];
long step = lRemoteSize / 100;
long process = localSize / step;
int c;
while ((c = in.read(bytes)) != -1) {
out.write(bytes, 0, c);
localSize += c;
long nowProcess = localSize / step;
if (nowProcess > process) {
process = nowProcess;
if (process % 10 == 0)
System.out.println("下载进度:" + process);
// TODO 更新文件下载进度,值存放在process变量中
}
}
in.close();
out.close();
boolean isDo = ftpClient.completePendingCommand();
if (isDo) {
result = DownloadStatus.Download_From_Break_Success;
} else {
result = DownloadStatus.Download_From_Break_Failed;
}
} else {
OutputStream out = new FileOutputStream(f);
InputStream in = ftpClient.retrieveFileStream(new String(remote.getBytes("UTF-8"), "iso-8859-1"));
byte[] bytes = new byte[1024];
long step = lRemoteSize / 100;
long process = 0;
long localSize = 0L;
int c;
while ((c = in.read(bytes)) != -1) {
out.write(bytes, 0, c);
localSize += c;
long nowProcess = localSize / step;
if (nowProcess > process) {
process = nowProcess;
if (process % 10 == 0)
System.out.println("下载进度:" + process);
// TODO 更新文件下载进度,值存放在process变量中
}
}
in.close();
out.close();
boolean upNewStatus = ftpClient.completePendingCommand();
if (upNewStatus) {
result = DownloadStatus.Download_New_Success;
} else {
result = DownloadStatus.Download_New_Failed;
}
}
return result;
}

private void disconnect() throws IOException {
if (ftpClient.isConnected()) {
ftpClient.disconnect();
}
}

}

热点内容
安川编程招工 发布:2024-04-30 15:21:31 浏览:641
lru缺页算法 发布:2024-04-30 15:19:29 浏览:496
服务器内网ip和外网ip是什么 发布:2024-04-30 15:13:13 浏览:752
c编译的产物 发布:2024-04-30 15:07:07 浏览:58
sql2000服务 发布:2024-04-30 15:00:05 浏览:530
如何导出薯仔缓存视频 发布:2024-04-30 14:39:36 浏览:470
图论环的算法 发布:2024-04-30 14:39:35 浏览:641
算法课项目 发布:2024-04-30 14:23:34 浏览:245
路由器无线密码从哪里看 发布:2024-04-30 13:41:07 浏览:765
安卓由哪个公司提供 发布:2024-04-30 12:27:03 浏览:417