加载中
golang 打包文件

package main import (   "archive/tar"   "io"   "os"   "fmt" ) func main() {   // 创建一个tar文件   f, err := os.Create("test.tar")   if err != nil {     panic(err.Error())   }   defer f...

2016/06/27 13:53
376
golang取两个数字之间的随机数

golang取两个数字之间的随机数(推荐方法一) 方法一 package main import ( "math/rand" "fmt" ) func main(){ for i := 0; i < 20; i++ { num:=RandInt64(1500,20...

2015/11/09 20:30
8K
golang获取一串数字中与给定数最接近的数字

今天需要写一个算法,获取一串数字中与给定数最接近的数字,代码如下 package main import ( "fmt" ) func main(){ arr:=[]int{12,16,29,34,39,43,55,64,71,89,90,9} zui...

2015/09/12 11:17
888
golang文件操作

文件读写 package main import (   "io/ioutil"   "os"   "fmt" ) func main() {   file_write("hello world!\n", "a.txt")   content := file_read("a.txt")   fmt.Println(content) } func f...

2015/07/06 10:53
334
beego分页类

go count, _ := models.M("logoperation").Alias(`op`).Field(`count(op.id) as count`).Where(where).Count() if count > 0 {   pagesize := 10   p := tools.NewPaginator(this.Ctx.Request,...

2015/06/05 09:57
1.6K
golang xml解析

xml是一个远程地址 <returnsms> <returnstatus>Success</returnstatus> <message>ok</message> <remainpoint>150528</remainpoint> <taskID>518334</taskID> <successCounts>1</successCoun...

2014/11/03 18:12
4.9K

没有更多内容

加载失败,请刷新页面

返回顶部
顶部