Cross-Platform Way of Creating Safari Webarchives(创建 Safari Webarchives 的跨平台方式)
问题描述
我一直在搜索,但没有找到任何可以创建 Safari 网络存档格式的工具的参考资料.
I've been searching around and haven't found any reference to tools that can create Safari's webarchive format.
有没有人有关于创建这种格式的代码的指针,或者至少有格式参考文档?
Does anyone have pointers to code for creating this format, or at least a format reference documentation?
理想情况下,我想构建一个工具,它接受一个目录并拆分一个网络存档,以便加载到 iPhone 中.
Ideally I'd like to build a tool that takes a directory and splits out a webarchive, for loading into a iPhone.
推荐答案
扩展 Ben 所说的:CFLite(Core Foundation 的跨平台开源子集)附带一个 plist 解析器.如果您可以链接到它,那么使用 .webarchive
文件应该非常简单,这些文件只是将所有文件(HTML、CSS 等)连接成一个的属性列表.
To expand on what Ben said: CFLite (the cross-platform open-source subset of Core Foundation) ships with a plist parser. If you can link against that, it should be quite simple to work with .webarchive
files, which are simply property lists that concatenate all files (HTML, CSS, etc.) into one.
还有其他库,例如 Mac-PropertyList
关于 Perl 的 CPAN.
There are other libraries as well, such as Mac-PropertyList
on CPAN for Perl.
这篇关于创建 Safari Webarchives 的跨平台方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:创建 Safari Webarchives 的跨平台方式
基础教程推荐
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01