HTML生成库 renderSnake

码农软件 · 软件分类 · HTML解析器 · 2019-04-03 08:13:36

软件介绍

RenderSnake 是一个轻量级的Java类库用来通过Java方法生产html页面,包含4个核心类库:

  • HtmlCanvas , a class that has methods for all HTML 4.01 and HTML5 tags for opening and closing it
  • HtmlAttributes, a class that has methods for all existing HTML attributes for setting an attribute value
  • Renderable, a interface that is used to create component classes. Each component must implement the method renderOn(HtmlCanvas)
  • PageContext, a Map-like object to store any information that is used for rendering a Page.

示例代码:

canvas.html()
        .body()
          .h1().write("RenderSnake")._h1()
        ._body()
      ._html()

本文地址:https://codercto.com/soft/d/2748.html

C++标准程序库

C++标准程序库

[德] Nicolai M. Josuttis / 侯捷、孟岩 / 华中科技大学出版社 / 2002-9 / 108.00元

这本包含最新资料的完整书籍,反映出被ANSI/ISO C++语言标准规格书纳入的C++标准程序库的最新组成。更明确地说,这本书将焦点放在标准模板库身上,检验其中的容器、迭代器、仿函数和算法。读者还可以找到特殊容、字串、数值类别、国际化议题、IOStream。每一个元素都有深刻的呈现,包括其介绍、设计、运用实例、细部解说、陷阱、意想不到的危险,以及相关类别和函数的精确樯记式和定义式。一起来看看 《C++标准程序库》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具