千家信息网

web开发中页面静态化的示例分析

发表于:2025-01-16 作者:千家信息网编辑
千家信息网最后更新 2025年01月16日,这篇文章给大家分享的是有关web开发中页面静态化的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。public void GenerathHtmlByString()
千家信息网最后更新 2025年01月16日web开发中页面静态化的示例分析

这篇文章给大家分享的是有关web开发中页面静态化的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

  public void GenerathHtmlByString() throws IOException, TemplateException {

  //创建配置类

  Configuration configuration=new Configuration(Configuration.getVersion());

  //模版内容

  String templateString="\n" +

  "\n" +

  " \n" +

  " FreemarkerTest1\n" +

  "\n" +

  "\n" +

  " 老同志,你也不要拽,${song}!\n" +

  " \n" +

  "\n" +

  "";

  //模版加载器

  StringTemplateLoader loader=new StringTemplateLoader();

  loader.putTemplate("template", templateString);

  configuration.setTemplateLoader(loader);

  //得到模版

  Template template=configuration.getTemplate("template", "UTF-8");

  ?

  //定义数据模型

  Map map=new HashMap<>();

  map.put("song", "你一个月的工资才二十来块");

  //静态化

  String content= FreeMarkerTemplateUtils.processTemplateIntoString(template, map);

  System.out.println("我们打印一下静态化的内容 :" + content);

  ?

  //转化为流

  InputStream inputStream= IOUtils.toInputStream(content);

  //输出文件

  FileOutputStream fileOutputStream=new FileOutputStream(new File("F:\\test2.html"));

  int copy= IOUtils.copy(inputStream, fileOutputStream);

  System.out.println(copy);//209

  }

感谢各位的阅读!关于"web开发中页面静态化的示例分析"这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

0