如何在Go中输入键盘的IP地址?

时间:2016-11-22 12:19:47

标签: go

我试图在Go中从键盘输入IP地址。当我尝试使用bufio输入IP地址时,我无法将“* bufio.Convert”类型转换为“字符串”类型。当我尝试使用Scanf()程序输入ip地址时跳过第二个变量的输入。如果我想将输入转换为字符串,我必须做什么?

import (
    "bufio"
    "fmt"
    "net"
    "os"
)

func checkerror(err error) {
   if err != nil {
        fmt.Println("Error:=", err)
   }
}

func main() {
   typeofoperation := bufio.NewScanner(os.Stdin)
   typeofoperation.Scan()
   typeofoperation.Text()
   //fmt.Println("IP or TCP dial?")
   //fmt.Println("Input Address")
   //fmt.Scanf("%s", &typeofoperation)
   //fmt.Scanf("%s", &addr)
   addr := bufio.NewScanner(os.Stdin)
   addr.Scan()
   addr.Text()
      if typeofoperation == "tcp" {
         address, err := net.ResolveTCPAddr("tcp", addr)
         checkerror(err)
         conn, err1 := net.DialTCP("tcp", nil, address)
         checkerror(err1)
         fmt.Println(conn, "TCP end")
      } else if typeofoperation == "ip" {
         address, err := net.ResolveIPAddr("ip", addr)
         checkerror(err)
         conn, err1 := net.DialIP("ip", nil, address)
         checkerror(err1)
         fmt.Println(conn, "IP end")
   }
      fmt.Println("End")
}

1 个答案:

答案 0 :(得分:1)

问题在于您使用Scanner的实例进行比较,而不是输入。您应该将Text()返回的值存储在变量中,并将其用于比较。

typeofoperation_input := typeofoperation.Text()
add_input := addr.Text()

if typeofoperation_input == "tcp" {
}