iOS 设备实现wifi局域网传输文件到iphone

先送上demo 地址:https://github.com/ZackKingS/HTTPTransfer

利用CocoaHTTPServer框架能够在iOS上建立起一个本地服务器,只要电脑/手机(iOS和Android都可以)和移动设备连入同一热点,即可使用电脑访问iOS服务器的页面,利用POST实现文件的上传。

实现:1.下载CocoaHTTPServer

2.解压后,将CocoaHTTPServer-master目录下的Core导入工程。

3.打开Samples/SimpleFileUploadServer,将其中的MyHTTPConnection类文件、web文件夹导入工程。

4.打开Vendor,将其中的CocoaAsyncSocket、CocoaLumberjack文件夹导入。

5.打开工程,打开MyHTTPConnection.m,根据标记#pragma mark multipart form data parser delegate跳转或者直接找到139行,- (void) processStartOfPartWithHeader:(MultipartMessageHeader*) header方法,将其中filePath的值修改为iOS的某个目录,这个路径是上传的文件存储的路径,这里以Caches为例:

NSString *uploadDirPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];

6.在适当的地方配置server启动,这里以AppDelegate为例:



- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    
    httpServer = [[HTTPServer alloc] init];
    
    [httpServer setType:@"_http._tcp."];
    
    // webPath是server搜寻HTML等文件的路径
    
    NSString *webPath = [[NSBundle mainBundle] resourcePath];
    
    [httpServer setDocumentRoot:webPath];
    
    [httpServer setConnectionClass:[MyHTTPConnection class]];
    

    
    NSError *err;
    
    if ([httpServer start:&err]) {
        
        NSLog(@"port %hu",[httpServer listeningPort]);
        
    }else{
        
        NSLog(@"%@",err);
        
    }
    
 

    return YES;
}

  1. 如果上传成功,就把文件上传到您的iPhone了。

总结:经过测试发现,搭建的局域网可支持上传各类型文件,上传速度和局域网信号质量有关,如果使用手机热点创建局域网,不会消耗手机流量. 个人热点的有效距离在15米左右,可同时支持多台设备连接局域网进行上传.

8.内网IP


iOS 设备实现wifi局域网传输文件到iphone_第1张图片
WechatIMG1844.jpeg
iOS 设备实现wifi局域网传输文件到iphone_第2张图片
屏幕快照 2017-08-28 12.45.53.png
iOS 设备实现wifi局域网传输文件到iphone_第3张图片
屏幕快照 2017-08-28 12.45.36.png

转自:http://www.jianshu.com/p/dc981c257cc2

你可能感兴趣的:(iOS 设备实现wifi局域网传输文件到iphone)