win10ftp服务器路径修改

win10ftp服务器路径修改,第1张

最先开启Win10的FTP服务项目。在“控制面板”的窗口界面中点击“程序”,接着在“程序”窗口中点击“启用或关闭Windows作用”。

在弹出的选框里将“Internet Information Services”下属的全部新项目开展选择,点击确定后等候安装。

1、首先,我们创建一个用于登录FTP以进行操作的用户帐户。右键单击我的桌面并选择“管理选项”,转到“管理”界面,然后打开“本地用户和组”选项。我们可以在列表中看到用户选项。

2、然后右键单击用户选项,从下拉菜单中选择新用户,开始构建我们的用户,填写用户名和密码。描述可以留空。然后单击Create。创建后,您将在右侧的用户列表中看到我们创建的用户。

3、用户创建完成后,我们开始添加IIS程序服务。打开计算机的“开始”菜单,找到“控制面板”选项并将其打开。

4、转到控制面板界面查找程序选项,单击下面的卸载程序按钮进入安装程序列表界面。

5、转到程序和功能选项卡,我们可以看到有一个选项可以在左上角的菜单栏中打开或关闭Windows,单击进入。

6、转到Windows功能界面打开或关闭,我们擅长Internet信息服务,然后单击打开FTP服务器的前端,即勾选其子菜单的FTP服务和FTP可扩展性,然后单击按下OK按钮。

7、添加IIS服务后,开始创建我们的FTP站点,右键单击我的电脑并选择管理,然后找到服务和应用程序选项,单击打开,然后单击Internet信息服务管理 - 此时我们可以看到连接右框架。

8、单击打开连接框下方的本地主机主页,然后您可以看到应用程序池和网站选项,我们右键单击该网站以选择添加网站。

9、然后在弹出的添加网站框中输入我们的网站名称,物理路径是我们的FTP本地文件夹,我们可以在磁盘中创建新的,然后选择添加,IP地址选择我们的本地IP地址。

10、创建我们的FTP后,我们可以看到我们刚刚在网站下面创建了一个网络,右键单击网站名称,选择添加FTP站点发布,然后启动绑定和SSL设置,端口号选择2121.IP地址填写本地IP地址。

问一下,你是想做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 = 0i <files.lengthi++) {

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()

}

}

}


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/265161.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-17
下一篇2023-04-17

发表评论

登录后才能评论

评论列表(0条)

    保存