博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
go语言模板中的os.Stdout标准输出转化为string
阅读量:4959 次
发布时间:2019-06-12

本文共 523 字,大约阅读时间需要 1 分钟。

package main
import(
    "text/template"
    "bytes"
    "fmt"
    "reflect"
)
func main(){
    name := "reyi"
    var tmp1 *template.Template
    tmp1 =template.New("test") //创建一个模板对象
    fmt.Println(reflect.TypeOf(tmp1))
    tmp1,err := tmp1.Parse("hello, {
{.}}") //解析模板
    if err!=nil{
        panic(err)
    }
    buf := new(bytes.Buffer) //实现了读写方法的可变大小的字节缓冲
    err = tmp1.Execute(buf,name) //err = tmp1.Execute(os.Stdout,name) 表示标准输出写入到控制台
    //bytes.Buffer能够从控制台获取标准输出
    fmt.Println(buf.String())
    if err!=nil{
        panic(err)
    }
}

转载于:https://www.cnblogs.com/MyUniverse/p/11149671.html

你可能感兴趣的文章
prometheus配置
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
java语法之final
查看>>
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>