golang: multiple http.writeHeader calls
func DownloadFile(w http.ResponseWriter, r *http.Request, sequence uint64, userid string) { userkey := userid filename := r.FormValue("filename") if len(userkey) <= 0 || len(filename) <= 0 { //........ } fp := fmt.Sprintf("%s%s/%s", g_sc.Rootdir, userkey, filename) fd, err := os.Open(fp) if err == nil { defer fd.Close() buf, err := ioutil.ReadAll(fd) if err != nil { //......... } else { size := len(buf) w.Header().Add("Content-Length", fmt.Sprintf("%d", size)) fmt.Fprint(w, string(buf)) } } }
问题出现在这几行代码:
size := len(buf)
w.Header().Add("Content-Length", fmt.Sprintf("%d", size))
fmt.Fprint(w, string(buf))
buf := new(bytes.Buffer) buf.Write(...) if err { // you can use http.Error here, no response has been written yet http.Error(w, err.String, http.StatusInternalServerError) return } if err := buf.WriteTo(w); err != nil { log.Printf("WriteTo: %v", err) // you can not use http.Error here anymore. So just log the message (e.g. "broken pipe...") }
或者注释这两行代码
//w.Header().Add("Content-Length", fmt.Sprintf("%d", size))
fmt.Fprint(w, string(buf))
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。