Go 语言入门很简单:net/url 包(下)

简介: 在 Golang 中,将 URL 打包用于从服务器获取数据非常重要。只需了解您是否正在处理任何应用程序并且您想从任何外部位置或服务器获取此应用程序的数据,都需要我们可以使用 URL。

在 Golang 中解析 URL

package main
import (
  "fmt"
  "log"
  "net/url"
)
func TestURL() {
  URL, err := url.Parse("http://bing.com/good%2bad")
  fmt.Println("Url before modification is", URL)
  if err != nil {
    log.Fatal("An error occurs while handling url", err)
  }
  fmt.Println("The URL path is", URL.Path)
  fmt.Println("The URL raw path is", URL.RawPath)
  fmt.Println("The URL is ", URL.String())
}
func main() {
  TestURL()
}

运行代码:

$ go run main.go
Url before modification is http://bing.com/good%2bad
The URL path is /good+ad
The URL raw path is /good%2bad
The URL is  http://bing.com/good%2bad


处理相对路径

package main
import (
  "fmt"
  "log"
  "net/url"
)
func ExampleURL() {
  URL, error := url.Parse("../../..//search?q=php")
  fmt.Println("Url before modification is", URL)
  if error != nil {
    log.Fatal("An error occurs while handling url", error)
  }
  baseURL, err := url.Parse("http://example.com/directory/")
  if err != nil {
    log.Fatal("An error occurs while handling url", err)
  }
  fmt.Println(baseURL.ResolveReference(URL))
}
func main() {
  ExampleURL()
}
$ go run main.go
Url before modification is ../../..//search?q=php
http://example.com/search?q=php

解析空格

package main
import (
  "fmt"
  "log"
  "net/url"
)
func ExampleURL() {
  URL, error := url.Parse("http://example.com/Here path with space")
  if error != nil {
    log.Fatal("An error occurs while handling url", error)
  }
  fmt.Println("The Url is", URL)
}
func main() {
  ExampleURL()
}

运行结果:

$ go run main.go
The Url is http://example.com/Here%20path%20with%20space


判断绝对地址

package main
import (
  "fmt"
  "net/url"
)
func main() {
  u := url.URL{Host: "example.com", Path: "foo"}
  fmt.Println("The Url is", u.IsAbs())
  u.Scheme = "http"
  fmt.Println("The Url is", u.IsAbs())
}
$ go run main.go
The Url is false
The Url is true


解析端口

package main
import (
  "fmt"
  "log"
  "net/url"
)
func ExampleURL() {
  URL1, error := url.Parse("https://example.org")
  fmt.Println("URL1 before modification is", URL1)
  if error != nil {
    log.Fatal("An error occurs while handling url", error)
  }
  URL2, err := url.Parse("https://example.org:8080")
  if err != nil {
    log.Fatal("An error occurs while handling url", URL2)
  }
  fmt.Println("URL2 before modification is", URL2)
  fmt.Println("URL2 Port number is", URL2.Port())
}
func main() {
  ExampleURL()
}
$ go run main.go
URL1 before modification is https://example.org
URL2 before modification is https://example.org:8080
URL2 Port number is 8080


总结

从本教程中,我们了解了 go url 包 的基本概念,并了解了 url 的概念语法。并逐渐展示了 url 的部分功能以及 url 的主要用途,希望读者可以在官方文档中学习其他方法。


相关文章
|
5天前
|
存储 监控 算法
员工上网行为监控中的Go语言算法:布隆过滤器的应用
在信息化高速发展的时代,企业上网行为监管至关重要。布隆过滤器作为一种高效、节省空间的概率性数据结构,适用于大规模URL查询与匹配,是实现精准上网行为管理的理想选择。本文探讨了布隆过滤器的原理及其优缺点,并展示了如何使用Go语言实现该算法,以提升企业网络管理效率和安全性。尽管存在误报等局限性,但合理配置下,布隆过滤器为企业提供了经济有效的解决方案。
33 8
员工上网行为监控中的Go语言算法:布隆过滤器的应用
|
25天前
|
存储 Go 索引
go语言中数组和切片
go语言中数组和切片
37 7
|
25天前
|
Go 开发工具
百炼-千问模型通过openai接口构建assistant 等 go语言
由于阿里百炼平台通义千问大模型没有完善的go语言兼容openapi示例,并且官方答复assistant是不兼容openapi sdk的。 实际使用中发现是能够支持的,所以自己写了一个demo test示例,给大家做一个参考。
|
25天前
|
程序员 Go
go语言中结构体(Struct)
go语言中结构体(Struct)
99 71
|
24天前
|
存储 Go 索引
go语言中的数组(Array)
go语言中的数组(Array)
103 67
|
19天前
|
Linux Go iOS开发
怎么禁用 vscode 中点击 go 包名时自动打开浏览器跳转到 pkg.go.dev
本文介绍了如何在 VSCode 中禁用点击 Go 包名时自动打开浏览器跳转到 pkg.go.dev 的功能。通过将 gopls 的 `ui.navigation.importShortcut` 设置为 "Definition",可以实现仅跳转到定义处而不打开链接。具体操作步骤包括:打开设置、搜索 gopls、编辑 settings.json 文件并保存更改,最后重启 VSCode 使设置生效。
44 7
怎么禁用 vscode 中点击 go 包名时自动打开浏览器跳转到 pkg.go.dev
|
25天前
|
存储 Go
go语言中映射
go语言中映射
36 11
|
26天前
|
开发框架 缓存 .NET
GraphQL 与 ASP.NET Core 集成:从入门到精通
本文详细介绍了如何在ASP.NET Core中集成GraphQL,包括安装必要的NuGet包、创建GraphQL Schema、配置GraphQL服务等步骤。同时,文章还探讨了常见问题及其解决方法,如处理复杂查询、错误处理、性能优化和实现认证授权等,旨在帮助开发者构建灵活且高效的API。
26 3
|
3天前
|
监控 算法 安全
解锁企业计算机监控的关键:基于 Go 语言的精准洞察算法
企业计算机监控在数字化浪潮下至关重要,旨在保障信息资产安全与高效运营。利用Go语言的并发编程和系统交互能力,通过进程监控、网络行为分析及应用程序使用记录等手段,实时掌握计算机运行状态。具体实现包括获取进程信息、解析网络数据包、记录应用使用时长等,确保企业信息安全合规,提升工作效率。本文转载自:[VIPShare](https://www.vipshare.com)。
13 0
|
17天前
|
Go 数据安全/隐私保护 UED
优化Go语言中的网络连接:设置代理超时参数
优化Go语言中的网络连接:设置代理超时参数