博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
go httpserver
阅读量:6195 次
发布时间:2019-06-21

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

hot3.png

package mainimport (	"io"	"log"	"net/http")//hello world, the web serverfunc HelloServer(w http.ResponseWriter, req *http.Request) {	io.WriteString(w, "hello, world!\n")}func main() {	http.HandleFunc("/hello", HelloServer)	err := http.ListenAndServe(":8800", nil)	if err != nil {		log.Fatal("ListenAndServe: ", err)	}}

 

转载于:https://my.oschina.net/jackhen/blog/799081

你可能感兴趣的文章
Coxeter积分计算
查看>>
flex
查看>>
MD5Encrypt加密
查看>>
Android学习笔记:根据系列图片绘制动画总结
查看>>
HDU2520 我是菜鸟,我怕谁【水题】
查看>>
ZOJ3869 Ace of Aces【序列处理】
查看>>
I00006 打印等腰三角形字符图案(底边在下)
查看>>
HDU1865 1sting
查看>>
HDU1397 POJ2909 UVA686 UVALive5674 ZOJ1657 Goldbach's Conjecture(II)
查看>>
Chrome在win8显示“没有注册类”的解决办法
查看>>
Hello C++ AMP!
查看>>
Mercurial(hg) 个人开发者的利器
查看>>
怎样做测试
查看>>
检查登录
查看>>
C#~异步编程再续~async异步方法与同步方法的并行
查看>>
LINQ-to-SQL那点事~线程共享的DbContext与私有的DbContext
查看>>
The web.config file for this project is missing the required DirectRequestModule.
查看>>
vuex状态管理 -- store刷新后数据会重置的解决方法
查看>>
京东商城商品价格获取方法(转帖)
查看>>
Harris 角点检测
查看>>