6

我正在尝试使用 FTP 服务器。我已经搜索了所有内容,对于像我这样的初学者来说,一切都很难理解。SimpleFTPSample 很难理解,因为它一次太多了。视图、按钮、标签、文本字段、上传、下载、请求、列表、获取。与 BlackRaccoon 和其他所有内容相同。

如何在没有视图或按钮的 Xcode(iPhone 应用程序)中简单且程序化地将“test.txt”上传到 FTP 服务器:“192.168.1.111”。例如,可以在 ViewDidLoad 中的代码。

也许是这样的?:

NSURL* url = [NSURL URLWithString:@"ftp://username:pw@189.92.32.34"];
CFReadStreamRef stream = CFReadStreamCreateWithFTPURL(NULL, (__bridge CFURLRef) url);
stream.delegate= self;
[stream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[stream open];

但哪个文件?扩展它,或编写新代码。我不知道,这对我来说是新的。

谢谢乔纳森

4

2 回答 2

7

作为 Black Raccoon 的作者,也许我有偏见(好吧,我知道我有偏见),但我试图让它尽可能简单和强大。我们来看看你要做什么,上传一个文件:

上传文件需要做四件事——启动代码,然后是四个委托方法:覆盖检查、数据、成功和失败。假设您将整个文件读入内存(对于小于 2 兆的小文件可以)。

首先,你需要在你的标题中:

    BRRequestUpload *uploadData;  // Black Raccoon's upload object
    NSData *uploadData;           // data we plan to upload

现在是代码部分:

- (IBAction) uploadFile :(id)sender
{
    //----- get the file path for the item we want to upload
    NSString *applicationDocumentsDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
    NSString *filepath = [NSString stringWithFormat: @"%@/%@", applicationDocumentsDir, @"file.text"];

    //----- read the entire file into memory (small files only)
    uploadData = [NSData dataWithContentsOfFile: filepath];

    //----- create our upload object
    uploadFile = [[BRRequestUpload alloc] initWithDelegate: self];

    //----- for anonymous login just leave the username and password nil 
    uploadFile.path = @"/home/user/myfile.txt";     
    uploadFile.hostname = @"192.168.1.100";
    uploadFile.username = @"yourusername";
    uploadFile.password = @"yourpassword";

    //----- we start the request
    [uploadFile start];
}

第一个将询问您的代码是否要覆盖现有文件。

-(BOOL) shouldOverwriteFileWithRequest: (BRRequest *) request
{
    //----- set this as appropriate if you want the file to be overwritten
    if (request == uploadFile)
    {
        //----- if uploading a file, we set it to YES (if set to NO, nothing happens)
        return YES;
    }
}

接下来,Black Raccoon 会询问您要发送的数据块。如果您有一个非常大的文件,您永远不想尝试一次性发送所有文件 - Apple 的 API 会阻塞并丢弃数据。然而,我们只有一小块,所以我们这样做:

- (NSData *) requestDataToSend: (BRRequestUpload *) request
{
    //----- returns data object or nil when complete
    //----- basically, first time we return the pointer to the NSData.
    //----- and BR will upload the data.
    //----- Second time we return nil which means no more data to send
    NSData *temp = uploadData;   // this is a shallow copy of the pointer

    uploadData = nil;            // next time around, return nil...

    return temp;
}

请记住,我们只能对小文件执行此操作。

接下来我们有我们的完成处理程序(如果事情按计划进行):

-(void) requestCompleted: (BRRequest *) request
{
    if (request == uploadFile)
    {
        NSLog(@"%@ completed!", request);
        uploadFile = nil;
    }
}

最后我们有我们的失败处理程序:

-(void) requestFailed:(BRRequest *) request
{
    if (request == uploadFile)
    {
        NSLog(@"%@", request.error.message);
        uploadFile = nil;
    }
}

如果它像说的那么简单,那就太好了,[BRFtpUploadTo: dest srcfile: srcFile destfile: dstFile]但有很多理由让你不应该这样做。部分原因与 Apple 如何实施其内部 FTP 有关。还有阻塞、错误等问题。最后,FTP 听起来应该是微不足道的,但最终却是一场噩梦。

FTP 是不平凡的,这就是为什么有这么多的实现。我并不是说黑浣熊是最好的,但它会在几分钟到几天之间响应问题而得到维护。

起初它可能看起来令人生畏,但在我看来,Black Raccoon 是更好的 FTP 库之一。我花了很多时间和精力使它成为对问题有出色响应的优质产品。我如何免费做到这一点?体积。;)

祝您最终使用任何 FTP 软件好运!

于 2013-08-22T15:22:59.840 回答
0
  1. 上传时需要上传路径。这就是 FTP 的工作方式。

  2. 该端口是标准的 FTP 端口。我知道在不违反 API 的情况下无法改变这一点。如果你弄清楚了,你很有可能不会通过 Apple 的检查。

  3. 此代码将上传/下载任何文件。

  4. 我不知道如何在安全的条件下进行这项工作。这使用 Apple 的 FTP 协议。还有其他 FTP 包从头开始构建它并且更加智能。我会调查他们。

BR 的设计是因为我需要简单的 FTP 通信。白浣熊没有为我这样做,因为当时(它已经现代化了)。

于 2014-07-07T11:57:55.800 回答