golang socket TCPServer 读取每行


 bufio.NewReader

通过  ReadLine读取每一行

func (t *TcpSocketUtil) syncreciveline() (string, error) {
	buf := bufio.NewReader(net.conn)
	for {
		data, _, eof := buf.ReadLine()
		if eof == io.EOF {
			break
		} else if eof != nil {
			fmt.Println(eof)
			return "", eof
		}
		fmt.Println(string(data))
	}
	return "", nil
}

  通过 ReadBytes或者ReadSlice读取每一行

func (t *TcpSocketUtil) syncreciveline() (string, error) {
	buf := bufio.NewReader(net.conn)
	for {
		data, _, eof := buf.ReadBytes('\n')
		if eof == io.EOF {
			break
		} else if eof != nil {
			fmt.Println(eof)
			return "", eof
		}
		fmt.Println(string(data))
	}
	return "", nil
}

  

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM