ftp路徑格式
您好,訪問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();
}
}
}