dougu5847 2016-07-18 00:43
浏览 162

带有golang的可用无线网络列表(在Linux下)[关闭]

I would like to get a list of the wireless networks available inside a Go program running under Linux OS. It's pretty easy to get this information from a Linux command line with iwlist but I really want to have it done natively in Go. Any ideas of which package should be used? Thank you.

  • 写回答

1条回答 默认 最新

  • 普通网友 2016-07-19 18:26
    关注

    I was able to get the information by executing a Linux command. Here's the piece of code:

        iwlistCmd := exec.Command("iwlist", iface, "scan")
        iwlistCmdOut, err := iwlistCmd.Output()
        if err != nil {
            fmt.Println(err, "Error when getting the interface information.")
        } else {
            fmt.Println(string(iwlistCmdOut))
        }
    

    The output is a huge list of information and works in Linux only. As a next stel I have to find a way to extract the info I need which is the ESSID probably with strings.split package/function.

    评论

报告相同问题?

悬赏问题

  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计