ios - 如何使 HTTP Web 服务托管在 iOS 上?
<p><p>我需要制作一个 HTTP 网络服务或一个 HTTP 操作页面,托管在 iPad 或任何 iOS 设备上。
应该可以从使用 <code>HTTPRequest</code> 或使用 <code>NSURLConnection</code> 连接在同一网络上的其他设备访问此服务。</p>
<p>任何建议都会很有用。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要一个用 cocoa 编写的 Web 服务器,该服务器在您的应用程序中运行并通过 HTTP 提供对文件的访问</p>
<hr/>
<p>无耻插件:看我的 DDSimpleHTTPd——它是一个在 iOS 设备上运行的基本网络服务器</p>
<p> <a href="https://github.com/Daij-Djan/DDSimpleHTTPd" rel="noreferrer noopener nofollow">https://github.com/Daij-Djan/DDSimpleHTTPd</a> </p>
<p>在您的 viewController/appDelegate 中,您可以像这样启动它以服务器指定目录中的任何文件:</p>
<pre><code>NSURL *url = [[ URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
NSString *path = url.path;
SimpleHTTPResponder *simpleServer = [ init];
simpleServer.port = 8000;
simpleServer.webRoot = path;
simpleServer.bonjourName = @"test"; //optional: allow it to be found via bonjour
simpleServer.loggingEnabled = YES; //optional: do NSLogs of the requests that come in
simpleServer.autogenerateIndex = YES; //optional: generate a directory overview
;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何使 HTTP Web 服务托管在 iOS 上?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/24010680/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/24010680/
</a>
</p>
页:
[1]