将静态文件嵌入到 Go 二进制文件中可确保所有必需的文件都捆绑在可执行文件中,从而无需进行外部文件管理。这可以通过 go:embed 指令或 go generated 技术来实现。
从 Go 1.16 开始,可以使用 go:embed 指令将文件直接嵌入到二进制文件中:
//go:embed hello.txt var s string
这会嵌入以下内容hello.txt 到字符串变量 s 中。
对于旧版本的 Go,您可以使用 gogenerate 结合脚本来嵌入文件。这是一个示例:
文件结构:
main.txt去:
//go:generate go run scripts/includetxt.go package main import "fmt" func main() { fmt.Println(a) fmt.Println(b) }
includetxt.go:
package main import ( "io/ioutil" "os" "strings" ) func main() { // Create the output file out, _ := os.Create("textfiles.go") out.Write([]byte("package main \n\nconst (\n")) // Iterate over .txt files in the current directory fs, _ := ioutil.ReadDir(".") for _, f := range fs { if strings.HasSuffix(f.Name(), ".txt") { // Write the embedded file contents to the output file out.Write([]byte(strings.TrimSuffix(f.Name(), ".txt") + ` = "`)) f, _ := os.Open(f.Name()) io.Copy(out, f) out.Write([]byte("`\n")) } } // Close the output file out.Write([]byte(")\n")) }
到嵌入文件:
$ go generate $ go build -o main
textfiles.go(生成):
package main const ( a = `hello` b = `world` )
这会将 a.txt 和 b.txt 的内容嵌入到二进制文件中作为字符串常量,允许它们在 main.go 中分别作为 a 和 b 进行访问。
以上是如何使用'go:embed”和'gogenerate”将静态文件嵌入到 Go 二进制文件中?的详细内容。更多信息请关注PHP中文网其他相关文章!