python版去UTF-8 BOM

來源:互聯網
上載者:User

標籤:

今天給app弄銀聯支付介面。直接copy銀聯的sdk。結果。安卓和ios始終報json格式錯誤。找了半天。都沒找到問題。最後懷疑可能是BOM破壞了json的資料格式轉換。驗證後確認是BOM的問題。為方便以後遇見BOM的問題的快速解決。寫了個python版本的去除BOM小指令碼。。

 

 1 #!/usr/bin/env python 2 #coding=utf-8 3  4 """ 5 清除指定目錄下面檔案的BOM  6   不包含子目錄 7  8 用法 ./clearBOM.py 檔案目錄 9 10 """11 12 import sys;13 import os;14 15 def main(dirPath):16     if dirPath[:-1] == ‘/‘:17         dirPath = dirPath[:-1]18     fileList = os.listdir(dirPath)19     for fileName in fileList:20         tmp = dirPath + "/" + fileName;21         if os.path.isfile(tmp):22             clearBOM(tmp)23 24 """25 清除BOM26 """27 def clearBOM(filePath):28     fp = open(filePath,‘rb+‘)29     if "\xef\xbb\xbf" == fp.read(3):30         contents = fp.read()31         fp.seek(0)32         fp.write(contents)33         print("Clear " + filePath + " UTF-8 BOM succ");34     fp.close()35     return True;36 37 38 if __name__ == ‘__main__‘:39     main(sys.argv[1])

 

python版去UTF-8 BOM

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.