日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

如何搭建服务器 无线传输,iOS 本地搭建服务器使用http传送(wifi快传)

發布時間:2024/9/3 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 如何搭建服务器 无线传输,iOS 本地搭建服务器使用http传送(wifi快传) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1、使用第三方的框架:CocoaHTTPServer

2、調用代碼,我的百度網盤

_httpserver = [[HTTPServer alloc] init];

[_httpserver setType:@"_http._tcp."];

[_httpserver setPort:16918];

NSString *webPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"website"];

[_httpserver setDocumentRoot:webPath];

[_httpserver setConnectionClass:[AYHTTPConnection class]];

[self startServer];

3、文件位置:

文件上傳到沙盒里,自己可以定義路徑。

- (void) processStartOfPartWithHeader:(MultipartMessageHeader *)header

{

MultipartMessageHeaderField *disposition = [header.fields objectForKey:@"Content-Disposition"];

NSString *fileName = [[disposition.params objectForKey:@"filename"] lastPathComponent];

if (fileName==nil || [fileName isEqualToString:@""])

return;

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *uploadFolderPath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"uploadFiles"];

NSString *uploadFilePath = [uploadFolderPath stringByAppendingPathComponent:fileName];

NSFileManager *fm = [NSFileManager defaultManager];

// 創建目錄

if (![fm fileExistsAtPath:uploadFolderPath])

{

[fm createDirectoryAtPath:uploadFolderPath withIntermediateDirectories:YES attributes:nil error:nil];

}

//Ready to write the file, if the file already exists Overwrite

if (![fm createFileAtPath:uploadFilePath contents:nil attributes:nil])

{

return;

}

isUploading = YES;

storeFile = [NSFileHandle fileHandleForWritingAtPath:uploadFilePath];

NSDictionary *value = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithLongLong:uploadFileSize], @"totalfilesize", nil];

[[NSNotificationCenter defaultCenter] postNotificationName:UPLOADSTART object:nil userInfo:value];

}

4、website文件(html)

本地代碼調起的html路徑,在第2步中有調用,這個是在pc端的web可以看到的界面

WiFi Transfer

All Files

%MyFiles%

upload file:

.black{color:#FFF;background-color:#333333;border-width:1px;}

總結

以上是生活随笔為你收集整理的如何搭建服务器 无线传输,iOS 本地搭建服务器使用http传送(wifi快传)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。