Source code introduction: Similar to the WIFI transmission function of Duokan and iReader. Source code effect: Source code snippet: - # import "CocoaWebResourceViewController.h"
-
- @implementation CocoaWebResourceViewController
-
-
- - ( void )loadFileList
- {
- [fileList removeAllObjects];
- NSString* docDir = [NSString stringWithFormat:@ "%@/Documents" , NSHomeDirectory()];
- NSDirectoryEnumerator *direnum = [[NSFileManager defaultManager]
- enumeratorAtPath:docDir];
- NSString *pname;
- while (pname = [direnum nextObject])
- {
-
- [fileList addObject:pname];
- }
- }
-
-
- - ( void )viewDidLoad {
- fileList = [[NSMutableArray alloc] init];
- [self loadFileList];
-
-
- httpServer = [[HTTPServer alloc] init];
- [httpServer setType:@ "_http._tcp." ];
- [httpServer setPort: 8080 ];
- [httpServer setName:@ "CocoaWebResource" ];
- [httpServer setupBuiltInDocroot];
- httpServer.fileResourceDelegate = self;
-
- [ super viewDidLoad];
- }
-
-
- - ( void )didReceiveMemoryWarning {
- [ super didReceiveMemoryWarning];
-
- }
-
-
- - ( void )dealloc {
- httpServer.fileResourceDelegate = nil;
- [httpServer release];
- [fileList release];
- [ super dealloc];
- }
-
- #pragma mark actions
- - (IBAction)toggleService:(id)sender
- {
- NSError *error;
- if ([(UISwitch*)sender isOn])
- {
- BOOL serverIsRunning = [httpServer start:&error];
- if (!serverIsRunning)
- {
- NSLog(@ "Error starting HTTP Server: %@" , error);
- }
- [urlLabel setText:[NSString stringWithFormat:@ "http://%@:%d" , [httpServer hostName], [httpServer port]]];
- }
- else
- {
- [httpServer stop];
- [urlLabel setText:@ "" ];
- }
- }
-
- #pragma mark WebFileResourceDelegate The callback method after the browser uploads the file
-
- - (NSInteger)numberOfFiles
- {
- return [fileList count];
- }
-
-
- - (NSString*)fileNameAtIndex:(NSInteger)index
- {
-
- return [fileList objectAtIndex:index];
- }
-
-
- - (NSString*)filePathForFileName:(NSString*)filename
- {
- NSString* docDir = [NSString stringWithFormat:@ "%@/Documents" , NSHomeDirectory()];
-
- return [NSString stringWithFormat:@ "%@/%@" , docDir, filename];
- }
-
-
-
-
- - ( void )newFileDidUpload:(NSString*)name inTempPath:(NSString*)tmpPath
- {
- if (name == nil || tmpPath == nil)
- return ;
- NSString* docDir = [NSString stringWithFormat:@ "%@/Documents" , NSHomeDirectory()];
- NSString *path = [NSString stringWithFormat:@ "%@/%@" , docDir, name];
- NSFileManager *fm = [NSFileManager defaultManager];
- NSError *error;
-
- if (![fm moveItemAtPath:tmpPath toPath:path error:&error])
- {
- NSLog(@ "can not move %@ to %@ because: %@" , tmpPath, path, error );
- }
-
- [self loadFileList];
-
- }
-
-
- - ( void )fileShouldDelete:(NSString*)fileName
- {
-
- NSString *path = [self filePathForFileName:fileName];
- NSFileManager *fm = [NSFileManager defaultManager];
- NSError *error;
- if (![fm removeItemAtPath:path error:&error])
- {
- NSLog(@ "%@ can not be removed because:%@" , path, error);
- }
- [self loadFileList];
- }
-
- @end
Download address: http://download..com/data/2103329 |