您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)如何在python中將字符串轉(zhuǎn)換成json,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
1、通過json來轉(zhuǎn)換:
In [1]: import json In [2]: mes = '{"InsId": 2, "name": "lege-happy", "CreationTime": "2019-04-23T03:18:02Z"}' In [3]: mes_to_dict = json.loads(mes) In [4]: print type(mes_to_dict) <type 'dict'>
以上的方式轉(zhuǎn)換是沒問題的,但是加入mes的格式為mes = '{"InsId": 2, "name": "lege-happy", "CreationTime": "2019-04-23T03:18:02Z"}'
的時(shí)候使用json來轉(zhuǎn)換的時(shí)候又會(huì)發(fā)生什么呢?
In [5]: import json In [6]: mes = "{'InsId': 1, 'name': 'lege-error', 'CreationTime': '2019-04-24T03:18:02Z'}" In [7]: mes_to_dict = json.loads(mes) --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-7-77264851f35b> in <module>() ----> 1 mes_to_dict = json.loads(mes) /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/__init__.pyc in loads(s, encoding, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw) 336 parse_int is None and parse_float is None and 337 parse_constant is None and object_pairs_hook is None and not kw): --> 338 return _default_decoder.decode(s) 339 if cls is None: 340 cls = JSONDecoder /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/decoder.pyc in decode(self, s, _w) 364 365 """ --> 366 obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 367 end = _w(s, end).end() 368 if end != len(s): /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/decoder.pyc in raw_decode(self, s, idx) 380 """ 381 try: --> 382 obj, end = self.scan_once(s, idx) 383 except StopIteration: 384 raise ValueError("No JSON object could be decoded") ValueError: Expecting property name: line 1 column 2 (char 1)
所以使用 json 進(jìn)行轉(zhuǎn)換存在一個(gè)潛在的限制:
由于 json 語法規(guī)定 數(shù)組或?qū)ο笾械淖址仨毷褂秒p引號(hào),不能使用單引號(hào) (官網(wǎng)上有一段描述是 “A string is a sequence of zero or more Unicode characters, wrapped in double quotes, using backslash escapes” ),因此上面的轉(zhuǎn)換是錯(cuò)誤的:
通過eval來轉(zhuǎn)換:
In [8]: mes = '{"InsId": 2, "name": "lege-happy", "CreationTime": "2019-04-23T03:18:02Z"}' In [9]: mes_dict = eval(mes) In [10]: print type(mes_dict) <type 'dict'> In [11]: In [11]: mes = mes = "{'InsId': 1, 'name': 'lege-error', 'CreationTime': '2019-04-24T03:18:02Z'}" In [12]: mes_dict = eval(mes) In [13]: print type(mes_dict) <type 'dict'>
上面的例子可以看出進(jìn)行轉(zhuǎn)換的時(shí)候不存在使用json轉(zhuǎn)換的問題,但是我們需要注意的是使用eval會(huì)存在安全問題,比如:
串型的輸入直接計(jì)算。比如,她會(huì)將'1+1'的計(jì)算串直接計(jì)算出結(jié)果。
In [14]: value = eval(raw_input('please input a value string:')) please input a value string:2 + 2 In [15]: value Out[15]: 4
從上面來看,eval功能可謂非常強(qiáng)大,即可以做string與list,tuple,dict之間的類型轉(zhuǎn)換,還可以做計(jì)算器使用!更有甚者,可以對(duì)她能解析的字符串都做處理,而不顧忌可能帶來的后果!所以說eval強(qiáng)大的背后,是巨大的安全隱患?。?!
比如說用戶惡意輸入下面的字符串:
open(r'D://filename.txt', 'r').read() __import__('os').system('dir') __import__('os').system('rm -rf /etc/*')
那么eval就會(huì)顯示你電腦目錄結(jié)構(gòu),讀取文件,刪除文件等等。如果是格盤等更嚴(yán)重的操作,她也會(huì)照做不誤?。?! 顯然這個(gè)不符合我們的需求!
通過literal_eval轉(zhuǎn)換:
In [20]: import ast In [21]: mes = '{"InsId": 2, "name": "lege-happy", "CreationTime": "2019-04-23T03:18:02Z"}' In [22]: mes_dict = ast.literal_eval(mes) In [23]: print type(mes_dict) <type 'dict'> In [24]: In [24]: In [24]: mes = mes = "{'InsId': 1, 'name': 'lege-error', 'CreationTime': '2019-04-24T03:18:02Z'}" In [25]: mes_dict = ast.literal_eval(mes) In [26]: print type(mes_dict) <type 'dict'>
使用 ast.literal_eval 進(jìn)行轉(zhuǎn)換既不存在使用 json 進(jìn)行轉(zhuǎn)換的問題,也不存在使用 eval 進(jìn)行轉(zhuǎn)換的 安全性問題,因此推薦使用 ast.literal_eval。
我們來看看官方文檔怎么描述literal_eval的:
def literal_eval(node_or_string): """ Safely evaluate an expression node or a string containing a Python expression. The string or node provided may only consist of the following Python literal structures: strings, numbers, tuples, lists, dicts, booleans, and None. """
Python是一種跨平臺(tái)的、具有解釋性、編譯性、互動(dòng)性和面向?qū)ο蟮哪_本語言,其最初的設(shè)計(jì)是用于編寫自動(dòng)化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發(fā)獨(dú)立的項(xiàng)目和大型項(xiàng)目。
看完上述內(nèi)容,你們對(duì)如何在python中將字符串轉(zhuǎn)換成json有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。