1 回答
TA贡献1813条经验 获得超2个赞
网易娱乐.文件服务器函数只返回一个处理程序。因此,它不会阻塞文件系统。此处的问题可能与文件的偏移量有关。我已经在我的机器中尝试过,它工作没有任何问题。
我已经修改了你的代码;
package main
import (
"net/http"
"os"
"time"
)
func main() {
t := time.NewTicker(time.Second)
defer t.Stop()
go func() {
srv := http.FileServer(http.Dir("./test"))
http.ListenAndServe(":8080", srv)
}()
for {
select {
case <-t.C:
appendToFile()
}
}
}
func appendToFile() {
f, err := os.OpenFile("./test/index.html", os.O_RDWR, 0644)
if err != nil {
panic(err)
}
defer f.Close()
// This assumes that the file ends with </body></html>
f.Seek(-16, 2)
if _, err = f.WriteString("test test test\n"); err != nil {
panic(err)
}
if _, err = f.WriteString("</body></html>\n"); err != nil {
panic(err)
}
}
在索引中.html我最初放置空白文档,
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body></html>
PS:最好先检查偏移量,然后将字符串写入该位置。
- 1 回答
- 0 关注
- 73 浏览
添加回答
举报