Go语言的HTTP WEB Demo案例

Go 语言

Go 是一个开源的编程语言,它能让构造简单、可靠且高效的软件变得容易。

Go是从2007年末由Robert Griesemer, Rob Pike, Ken Thompson主持开发,后来还加入了Ian Lance Taylor, Russ Cox等人,并最终于2009年11月开源,在2012年早些时候发布了Go 1稳定版本。现在Go的开发已经是完全开放的,并且拥有一个活跃的社区。

Go 语言特色

  • 简洁、快速、安全
  • 并行、有趣、开源
  • 内存管理、数组安全、编译迅速

Go 语言用途

Go 语言被设计成一门应用于搭载 Web 服务器,存储集群或类似用途的巨型中央服务器的系统编程语言。

对于高性能分布式系统领域而言,Go 语言无疑比大多数其它语言有着更高的开发效率。它提供了海量并行的支持,这对于游戏服务端的开发而言是再好不过了。

package main

import (
	"fmt"
	"io/ioutil"
	"net/http"
)

func handler(w http.ResponseWriter, r *http.Request) {
	fmt.Fprintf(w, "Hello, World!")
}

func serveHTMLPage(w http.ResponseWriter, r *http.Request) {
	// 读取项目文件中的 HTML 页面内容
	htmlContent, err := ioutil.ReadFile("index.html")
	if err != nil {
		http.Error(w, "Failed to read HTML file", http.StatusInternalServerError)
		return
	}

	// 设置响应头
	w.Header().Set("Content-Type", "text/html; charset=utf-8")
	// 将 HTML 页面内容写入响应
	w.Write(htmlContent)
}

func helloMethod(w http.ResponseWriter, r *http.Request) {
	// 返回字符串 "Hello Method"
	fmt.Fprintf(w, "Hello Method")
}

func main() {
	http.HandleFunc("/", handler)
	http.HandleFunc("/page", serveHTMLPage)
	http.HandleFunc("/hello", helloMethod) // 新增的处理方法
	fmt.Println("Server is listening on port 8081")
	http.ListenAndServe(":8081", nil)
}

你可能感兴趣的:(Golang,golang)