将文件写入安全服务器

发布于 2024-11-06 21:13:16 字数 946 浏览 0 评论 0原文

我正在尝试将文本文件写入安全服务器............

-(IBAction) startUpload{
    NSLog(@"Start upload");

    NSString *myString = @"TESTTEXT";
    NSURL *myURL = [NSURL URLWithString:@"ftp://USERNAME:[email protected]/testfile.plist"];

    NSError *error;

    BOOL ok = [myString writeToURL:myURL atomically:NO encoding:NSUTF8StringEncoding error:&error];

    if (!ok) { // if NOT ok
        NSLog(@"error writing to file at %@, %@, %@",myURL,[error localizedFailureReason],[error localizedDescription]);
    }

}

我得到的只是此错误消息......

写入文件时出错 ftp://用户名:[电子邮件受保护]/testfile.plist,(空),操作无法完成。 (Cocoa 错误 518。)

感谢所有帮助

I'm trying to write a text file to a secure server .....

-(IBAction) startUpload{
    NSLog(@"Start upload");

    NSString *myString = @"TESTTEXT";
    NSURL *myURL = [NSURL URLWithString:@"ftp://USERNAME:[email protected]/testfile.plist"];

    NSError *error;

    BOOL ok = [myString writeToURL:myURL atomically:NO encoding:NSUTF8StringEncoding error:&error];

    if (!ok) { // if NOT ok
        NSLog(@"error writing to file at %@, %@, %@",myURL,[error localizedFailureReason],[error localizedDescription]);
    }

}

... and all I get is this error message ....

error writing to file at ftp://USERNAME:[email protected]/testfile.plist, (null), The operation couldn’t be completed. (Cocoa error 518.)

All help appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

☆獨立☆ 2024-11-13 21:13:16

I think FTP is not supported as NSURL,

take a look to this question: NSURL with http:// works fine but with ftp:// not

also take a look to this one

Upload photo to arbitrary FTP with iPhone app

深海少女心 2024-11-13 21:13:16

查看 s7ftprequest

说明:

这个项目的灵感来自于我在所有涉及网络交互的应用程序中使用的一个奇妙的库(我几乎不记得有一个没有任何库):ASIHTTPRequest。

这是 ASIHTTPRequest 设计解决方案和 SimpleFTPSample 技术组合在一起的产物。

Have a look at s7ftprequest

Description:

This project was inspired by a marvelous lib that I'm using in all my apps that involve network interactions (I can hardly remember one without any): ASIHTTPRequest.

This is the product of composing together ASIHTTPRequest design solutions and SimpleFTPSample techniques.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文