René's URL Explorer Experiment


Title: zip 包解压乱码 · Issue #127 · codcodog/Blog · GitHub

Open Graph Title: zip 包解压乱码 · Issue #127 · codcodog/Blog

X Title: zip 包解压乱码 · Issue #127 · codcodog/Blog

Description: zip 包解压乱码 场景 使用 golang zip 包解压时,文件名含有中文会出现乱码. 原因 因为压缩包是在 windows 平台压缩的,压缩软件 winrar 会使用本地编码方式进行压缩,所以含有中文的文件名是 gbk 格式的, 而 golang 字符串是使用 utf-8 格式,从而出现乱码. 解决 通过标识位识别 gbk 编码,若是则转换为 utf-8 如果未设置通用位11,则文件名和注释使用原始的ZIP字符编码 如果设置了通用位11,则文件名和注释必须使用UT...

Open Graph Description: zip 包解压乱码 场景 使用 golang zip 包解压时,文件名含有中文会出现乱码. 原因 因为压缩包是在 windows 平台压缩的,压缩软件 winrar 会使用本地编码方式进行压缩,所以含有中文的文件名是 gbk 格式的, 而 golang 字符串是使用 utf-8 格式,从而出现乱码. 解决 通过标识位识别 gbk 编码,若是则转换为 utf-8 如果未设置通用位11,则文件名...

X Description: zip 包解压乱码 场景 使用 golang zip 包解压时,文件名含有中文会出现乱码. 原因 因为压缩包是在 windows 平台压缩的,压缩软件 winrar 会使用本地编码方式进行压缩,所以含有中文的文件名是 gbk 格式的, 而 golang 字符串是使用 utf-8 格式,从而出现乱码. 解决 通过标识位识别 gbk 编码,若是则转换为 utf-8 如果未设置通用位11,则文件名...

Opengraph URL: https://github.com/codcodog/Blog/issues/127

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"zip 包解压乱码","articleBody":"zip 包解压乱码\r\n==============\r\n\r\n### 场景\r\n\r\n使用 `golang` `zip` 包解压时,文件名含有中文会出现乱码.\r\n\r\n\r\n\r\n### 原因\r\n\r\n因为压缩包是在 `windows` 平台压缩的,压缩软件 `winrar` 会使用本地编码方式进行压缩,所以含有中文的文件名是 `gbk` 格式的,  \r\n而 `golang` 字符串是使用 `utf-8` 格式,从而出现乱码.\r\n\r\n\r\n### 解决\r\n\r\n通过标识位识别 `gbk` 编码,若是则转换为 `utf-8`\r\n\u003e 如果未设置通用位11,则文件名和注释使用原始的ZIP字符编码  \r\n\u003e 如果设置了通用位11,则文件名和注释必须使用UTF-8存储规范定义的字符编码形式支持Unicode标准版本4.1.0或更高版本\r\n\r\n```golang\r\nfunc (tc *TaskController) unzip(fileName string, dst string) (map[string][]string, int, error) {\r\n\tzf, err := zip.OpenReader(fileName)\r\n\tif err != nil {\r\n\t\treturn nil, 0, err\r\n\t}\r\n\tdefer zf.Close()\r\n\r\n\ttotal := 0                         // 总文件数,记录任务进度\r\n\tfiles := make(map[string][]string) // 文件信息缓存,sku =\u003e 文件名\r\n\tfor _, file := range zf.File {\r\n\t\t// 注意,windows 下的压缩文件是GBK,解压可能有中文名,则需要转换为 utf-8\r\n\t\tif file.Flags == 0 {\r\n\t\t\ti := bytes.NewReader([]byte(file.Name))\r\n\t\t\tdecoder := transform.NewReader(i, simplifiedchinese.GB18030.NewDecoder())\r\n\t\t\tcontent, _ := ioutil.ReadAll(decoder)\r\n\t\t\tfile.Name = string(content)\r\n\t\t}\r\n\r\n\t\tpath := filepath.Join(dst, file.Name)\r\n\t\tif file.FileInfo().IsDir() {\r\n\t\t\tcontinue\r\n\t\t}\r\n\r\n\t\tf, err := file.Open()\r\n\t\tif err != nil {\r\n\t\t\tlog.Error(\"[file.Open] error: %v\", err)\r\n\t\t\treturn nil, 0, err\r\n\t\t}\r\n\r\n\t\tif err = os.MkdirAll(filepath.Dir(path), os.ModePerm); err != nil {\r\n\t\t\tf.Close()\r\n\t\t\treturn nil, 0, err\r\n\t\t}\r\n\r\n\t\tfw, err := os.OpenFile(path, os.O_CREATE|os.O_RDWR|os.O_TRUNC, file.Mode())\r\n\t\tif err != nil {\r\n\t\t\tlog.Error(\"[os.OpenFile] error: %v\", err)\r\n\t\t\treturn nil, 0, err\r\n\t\t}\r\n\t\t_, err = io.Copy(fw, f)\r\n\t\tif err != nil {\r\n\t\t\tf.Close()\r\n\t\t\tfw.Close()\r\n\t\t\treturn nil, 0, err\r\n\t\t}\r\n\r\n\t\tf.Close()\r\n\t\tfw.Close()\r\n\r\n\t\tsku := tc.getSku(file.Name)\r\n\t\tif sku == \"\" {\r\n\t\t\tcontinue\r\n\t\t}\r\n\t\tfiles[sku] = append(files[sku], file.Name)\r\n\t\ttotal += 1\r\n\t}\r\n\r\n\treturn files, total, nil\r\n}\r\n```\r\n\r\n### 参考\r\n[go 处理zip解压时乱码问题](https://studygolang.com/articles/21345)  \r\n[Creating a zip archive with Unicode filenames using Go's archive/zip](https://stackoverflow.com/questions/30026083/creating-a-zip-archive-with-unicode-filenames-using-gos-archive-zip)\r\n","author":{"url":"https://github.com/codcodog","@type":"Person","name":"codcodog"},"datePublished":"2021-04-25T15:34:45.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/127/Blog/issues/127"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:4863e8bf-1e1e-a2eb-ee94-8e10efc66181
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE8A2:37D99:F39C20:14F62D9:6A4CA193
html-safe-nonceea5b03d79a2e5ff6e03c14fb006f192ddab611c61fdd74226a40e3a174aacb59
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFOEEyOjM3RDk5OkYzOUMyMDoxNEY2MkQ5OjZBNENBMTkzIiwidmlzaXRvcl9pZCI6IjI0NjQ3NzU5NjA3OTgyMDg0MDMiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac6172040fe339ae7596aa14bd613f6b636cef515237b6701ff86e2d22dfd7acb3
hovercard-subject-tagissue:867040790
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/codcodog/Blog/127/issue_layout
twitter:imagehttps://opengraph.githubassets.com/7f9cc8865ef495f4afc3e8cb349c5a9a49364be615ebc4618f0ec4cb71ebbd1a/codcodog/Blog/issues/127
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/7f9cc8865ef495f4afc3e8cb349c5a9a49364be615ebc4618f0ec4cb71ebbd1a/codcodog/Blog/issues/127
og:image:altzip 包解压乱码 场景 使用 golang zip 包解压时,文件名含有中文会出现乱码. 原因 因为压缩包是在 windows 平台压缩的,压缩软件 winrar 会使用本地编码方式进行压缩,所以含有中文的文件名是 gbk 格式的, 而 golang 字符串是使用 utf-8 格式,从而出现乱码. 解决 通过标识位识别 gbk 编码,若是则转换为 utf-8 如果未设置通用位11,则文件名...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamecodcodog
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
go-importgithub.com/codcodog/Blog git https://github.com/codcodog/Blog.git
octolytics-dimension-user_id18098145
octolytics-dimension-user_logincodcodog
octolytics-dimension-repository_id75478736
octolytics-dimension-repository_nwocodcodog/Blog
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id75478736
octolytics-dimension-repository_network_root_nwocodcodog/Blog
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseae90d426644ca15e89bacceb72e51f4e9dbf85f7
ui-targetcanary-1
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/codcodog/Blog/issues/127#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcodcodog%2FBlog%2Fissues%2F127
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcodcodog%2FBlog%2Fissues%2F127
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=codcodog%2FBlog
Reloadhttps://github.com/codcodog/Blog/issues/127
Reloadhttps://github.com/codcodog/Blog/issues/127
Reloadhttps://github.com/codcodog/Blog/issues/127
codcodog https://github.com/codcodog
Bloghttps://github.com/codcodog/Blog
Notifications https://github.com/login?return_to=%2Fcodcodog%2FBlog
Fork 1 https://github.com/login?return_to=%2Fcodcodog%2FBlog
Star 20 https://github.com/login?return_to=%2Fcodcodog%2FBlog
Code https://github.com/codcodog/Blog
Issues 135 https://github.com/codcodog/Blog/issues
Pull requests 0 https://github.com/codcodog/Blog/pulls
Actions https://github.com/codcodog/Blog/actions
Wiki https://github.com/codcodog/Blog/wiki
Security and quality 0 https://github.com/codcodog/Blog/security
Insights https://github.com/codcodog/Blog/pulse
Code https://github.com/codcodog/Blog
Issues https://github.com/codcodog/Blog/issues
Pull requests https://github.com/codcodog/Blog/pulls
Actions https://github.com/codcodog/Blog/actions
Wiki https://github.com/codcodog/Blog/wiki
Security and quality https://github.com/codcodog/Blog/security
Insights https://github.com/codcodog/Blog/pulse
zip 包解压乱码https://github.com/codcodog/Blog/issues/127#top
Golanghttps://github.com/codcodog/Blog/issues?q=state%3Aopen%20label%3A%22Golang%22
https://github.com/codcodog
codcodoghttps://github.com/codcodog
on Apr 25, 2021https://github.com/codcodog/Blog/issues/127#issue-867040790
go 处理zip解压时乱码问题https://studygolang.com/articles/21345
Creating a zip archive with Unicode filenames using Go's archive/ziphttps://stackoverflow.com/questions/30026083/creating-a-zip-archive-with-unicode-filenames-using-gos-archive-zip
Golanghttps://github.com/codcodog/Blog/issues?q=state%3Aopen%20label%3A%22Golang%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.