http服务读取配置文件,交叉编译
Posted hualou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http服务读取配置文件,交叉编译相关的知识,希望对你有一定的参考价值。
因为是在windows上编译的代码,在linux上不可执行,所以需要交叉编译
package main
import (
"flag"
"gopkg.in/ini.v1"
"log"
"net/http"
"strconv"
)
func main() {
port := flag.Int("p", 8080, "服务端口")
flag.Parse()
if *port == 0 {
log.Fatal("请指定端口")
}
cfg, err := ini.Load("my.ini")
if err != nil {
log.Fatal(err)
}
http.HandleFunc("/", func(writer http.ResponseWriter, request *http.Request) {
dbUser := cfg.Section("db").Key("db_user").Value()
dbPass := cfg.Section("db").Key("db_pass").Value()
writer.Write([]byte("<h1>" + dbUser + "</h1>"))
writer.Write([]byte("<h1>" + dbPass + "</h1>"))
})
http.ListenAndServe(":"+strconv.Itoa(*port), nil)
}
以上是关于http服务读取配置文件,交叉编译的主要内容,如果未能解决你的问题,请参考以下文章
配置qt交叉编译安装,总是提示arm-linux-g++:没有那个文件或目录