0

我需要简单地将字符串作为 txt 上传到我的 ftp 服务器,我搜索得很好,但没有任何效果。有没有简单地将字符串上传到 ftp 服务器?注意:我查看了 s7ftp 的东西 simpleftp 和苹果的 ftp 东西,我无法得到任何工作。

先谢谢了。

4

1 回答 1

2

您可以创建一个服务器端脚本来解析 POST/GET 字符串吗?对于您可以在 3 行服务器端执行的操作,似乎上传文件可能需要大量繁重的工作/编码。只是一个想法。

编辑添加

这里有一些简单的 Objective-C,你可以随便看看:

// Create the request.
NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.YOURDOMAIN.com/?string=YOURSTRINGORWHATEVER"]
                        cachePolicy:NSURLRequestUseProtocolCachePolicy
                    timeoutInterval:60.0];
// create the connection with the request
// and start loading the data
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if (theConnection) {
    // Create the NSMutableData to hold the received data.
    // receivedData is an instance variable declared elsewhere.
    receivedData = [[NSMutableData data] retain];
} else {
    // Inform the user that the connection failed.
}

单击此处了解有关 URL 加载的更多信息

如果您无法使用 ARC 或遇到问题,请尝试此课程。很方便:

GitHub 上的 SMWebRequest 类

希望这可以帮助。

于 2012-04-04T22:22:35.583 回答