怎么加载zip脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么加载zip脚本相关的知识,希望对你有一定的参考价值。

参考技术A 首先 使用的是老版的jszip,因为比较小(70多KB,api会稍微有点不同)
2. 例子是分别使用IntelliJ IDEA和Egret Wing这两个IDE跑的(Egret5.01)
3. 压缩文件zip的后缀修改

freemarker:模板加载器:从 zip 文件加载模板

【中文标题】freemarker:模板加载器:从 zip 文件加载模板【英文标题】:freemarker: template Loader : load templates from zip file 【发布时间】:2011-05-11 20:40:29 【问题描述】:

是否可以从 zip 文件加载 freemarker 模板?

我想将所有模板压缩到一个文件中并将其放入我的应用程序中。

有可能吗?

【问题讨论】:

【参考方案1】:

这可能并不理想,但如果您只需要 load the text of the zipped template 文件,您可以从字符串中实例化 FreeMarkerTemplate。我在下面给了你一个例子,但我建议你也阅读the freemarker documentation。 (检查“入门”选项卡)

Configuration cfg = new Configuration();
//configuring default free marker configuration
cfg.setObjectWrapper(new DefaultObjectWrapper());

//construct template from string
String templateText = "";//load template text from zip file

Template template= new Template("sometemplate", new StringReader(templateText), cfg);

//your data model 
Object root = new Object(); 

//process template 
StringWriter out = new StringWriter(); 
template.process(new Object(), out); 

String renderedText= out.toString(); 

【讨论】:

【参考方案2】:

我不知道 zip 文件,但您可以使用“classForTemplateLoading”功能从 jar 文件中加载它们:

public class MyLoader 

    private static Configuration cfg = new Configuration();

    static 
    
         cfg.setClassForTemplateLoading( MyLoader.class, "/" );
    

    public Template getTemplate( String path ) throws Throwable
    
         return cfg.getTemplate(path);
    

例如,如果您的模板“MyTemplate.ftl”在“com.mycode.templates”包中,则路径将为“/com/mycode/templates/MyTemplate.ftl”。

那么你可以把你的“源”树当成类,把它添加到你的类路径中,它应该就可以工作了。

【讨论】:

另见***.com/questions/3019424/…

以上是关于怎么加载zip脚本的主要内容,如果未能解决你的问题,请参考以下文章

创建“update.zip”以从恢复模式(引导加载程序)安装 APK?

unity为啥不能加载脚本

freemarker:模板加载器:从 zip 文件加载模板

Unity无法加载脚本?

电脑出现脚本错误怎么解决?

此网页正试图从未经验证的来源加载脚本,怎么解决?