2012年8月10日
摘要: go语言入门简单,可要写出好的go代码得需要下些功夫。前两天刚把http文件共享的升级过(http://www.cnblogs.com/MikeZhang/archive/2012/08/06/httpShareGolang20120805.html ),现在经大牛指点完全用http实现,感觉爽快多了。一个简单的http服务器代码package mainimport ( "io" "net/http" "log")func HelloServer(w http.ResponseWriter, req *http.Request) { 阅读全文
posted @ 2012-08-10 01:53 Mike_Zhang 阅读(3441) 评论(0) 推荐(0) 编辑