IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> 简单使用google-ctemplete库 -> 正文阅读

[C++知识库]简单使用google-ctemplete库

最近几天在搞关于C++输出html文件。在GitHub上找到了Google开源的ctemplete库。前几天编译好文件(怎么在window上编译参考上一篇)。今天看着例子,自己写了一个demo,其中有自己的感悟,写文记录下。

思路:其实ctemplete的思想其实就是替换模板中的变量,C++要想导出一个html文档首先得有一个html模板文件。所以你想导处什么格式的文件,先写关于模板文件。在模板文件中添加变量使用C++替换其中的变量即可。

至于怎么引用库百度一下即可,我这里使用的是引用动态库。

先写个demo

html模板:

<html>
<head>
<title>ctemplateDemo</title>
</head>

<body>
    {{table1_name}}
    <table>       
		<tr>
            <th>ID</th>
            <th>name</th>
            <th>sax</th>
        </tr>
		<tbody>
		 {{#TABLE1}}
			<tr>
				<th>ASD:{{field1}}</th>
				<th>{{field2}}</th>
				<th>{{field3}}</th>
			</tr>
        {{/TABLE1}}
		</tbody>
    </table>
</body>
</html>

C++ 代码:

// testHTML.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <stdio.h>
#include <string>
#include <fstream> 
#include <iostream>
#include <ctemplate/template.h>

int write_string_to_file_append(const std::string & file_string, const std::string str)
{
	std::ofstream	OsWrite(file_string, std::ofstream::app);
	OsWrite << str;
	OsWrite << std::endl;
	OsWrite.close();
	return 0;
}

int main()
{
	ctemplate::TemplateDictionary dict("aa");
	dict.SetValue("table1_name", "qwe");

	for (int i = 0; i<4; ++i)
	{
		ctemplate::TemplateDictionary* table1_dict;
		table1_dict = dict.AddSectionDictionary("TABLE1");
		table1_dict->SetValue("field1", "1");
		table1_dict->SetValue("field2", "2");
		table1_dict->SetValue("field3", "3");
		// 这里有点类似于printf
		//table1_dict->SetFormattedValue("field3", "%d", i);
	}

	std::string output;
	ctemplate::Template* tpl;
	tpl = ctemplate::Template::GetTemplate("example1.html", ctemplate::DO_NOT_STRIP);
	tpl->Expand(&output, &dict);
	printf("%s\n", output.c_str());
	write_string_to_file_append(std::string("file.html"), output);
	return 0;
}

结果:最终输出的file.html

<html>

<head>

<title>ctemplateDemo</title>

</head>



<body>

    qwe

    <table>       

		<tr>

            <th>ID</th>

            <th>name</th>

            <th>sax</th>

        </tr>

		<tbody>

		 

			<tr>

				<th>ASD:1</th>

				<th>2</th>

				<th>3</th>

			</tr>

        

			<tr>

				<th>ASD:1</th>

				<th>2</th>

				<th>3</th>

			</tr>

        

			<tr>

				<th>ASD:1</th>

				<th>2</th>

				<th>3</th>

			</tr>

        

			<tr>

				<th>ASD:1</th>

				<th>2</th>

				<th>3</th>

			</tr>

        

		</tbody>

    </table>

</body>

</html>

其中用到的核心就是变量替换和循环:

?

dict.SetValue("table1_name", "qwe");

这行代码就是变量替换,非常的简单。

循环就需要注意一点,需要在模板中设置循环体。

?在模板中

{{#TABLE1}}和{{/TABLE1}}之间的就是循环体。C++对应的代码就是

?一定要有这行,

table1_dict = dict.AddSectionDictionary("TABLE1");

下面的就是变量替换了。这个在插入表格中是非常好用的。

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-16 22:04:24  更:2022-03-16 22:05:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:54:17-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码