zoukankan      html  css  js  c++  java
  • python 转xe7xbdx97xe5x87xbd 为中文

    [root@yyjk tmp]# cat a1.py 
    # !/usr/bin/env python
    # -*- coding: utf-8 -*-
    import cx_Oracle
    from pprint import pprint
    import csv
    import time
    import re
    import binascii
    
    conn = cx_Oracle.connect('xxx/xxx@10.5.100.232/tlyy')
    cursor = conn.cursor()
    xsql="select * from tlcb_mon_device a where a.ipaddr='10.3.244.1'"
    r = cursor.execute(xsql)
    print r
    arr=[]
    for x in r:
     print x
     print type(x)
    [root@yyjk tmp]# python a1.py 
    <cx_Oracle.Cursor on <cx_Oracle.Connection to xxx@10.5.100.232/tlyy>>
    ('DP_244.1', 'IBM AIX', '10.3.244.1', 'UTF-8', 'xe7x94xb5xe7xa5xa8xe5x89x8dxe7xbdxaexe4xb8xbbxe6x9cxba', 'ECDS', 'xe7xbdx97xe5x87xbd', '1', 'FTP')
    <type 'tuple'>
    
    
    [root@yyjk tmp]# cat a1.py 
    # !/usr/bin/env python
    # -*- coding: utf-8 -*-
    import cx_Oracle
    from pprint import pprint
    import csv
    import time
    import re
    import binascii
    
    conn = cx_Oracle.connect('xxx/xxx@10.5.100.232/tlyy')
    cursor = conn.cursor()
    xsql="select * from tlcb_mon_device a where a.ipaddr='10.3.244.1'"
    r = cursor.execute(xsql)
    print r
    arr=[]
    for x in r:
     print x
     print type(x)
     print x.decode('string_escape')
    [root@yyjk tmp]# 
    
    
    [root@yyjk tmp]# python a1.py 
    <cx_Oracle.Cursor on <cx_Oracle.Connection to xxx@10.5.100.232/tlyy>>
    ('DP_244.1', 'IBM AIX', '10.3.244.1', 'UTF-8', 'xe7x94xb5xe7xa5xa8xe5x89x8dxe7xbdxaexe4xb8xbbxe6x9cxba', 'ECDS', 'xe7xbdx97xe5x87xbd', '1', 'FTP')
    <type 'tuple'>
    Traceback (most recent call last):
      File "a1.py", line 19, in <module>
        print x.decode('string_escape')
    AttributeError: 'tuple' object has no attribute 'decode'
    
    
    [root@yyjk tmp]# cat a1.py 
    # !/usr/bin/env python
    # -*- coding: utf-8 -*-
    import cx_Oracle
    from pprint import pprint
    import csv
    import time
    import re
    import binascii
    
    conn = cx_Oracle.connect('xxx/xxx@10.5.100.232/tlyy')
    cursor = conn.cursor()
    xsql="select * from tlcb_mon_device a where a.ipaddr='10.3.244.1'"
    r = cursor.execute(xsql)
    print r
    arr=[]
    for x in r:
     print x
     print type(x)
     bb=str(x)
     print bb.decode('string_escape')
    [root@yyjk tmp]# python a1.py
    <cx_Oracle.Cursor on <cx_Oracle.Connection to xxx@10.5.100.232/tlyy>>
    ('DP_244.1', 'IBM AIX', '10.3.244.1', 'UTF-8', 'xe7x94xb5xe7xa5xa8xe5x89x8dxe7xbdxaexe4xb8xbbxe6x9cxba', 'ECDS', 'xe7xbdx97xe5x87xbd', '1', 'FTP')
    <type 'tuple'>
    ('DP_244.1', 'IBM AIX', '10.xx', 'UTF-8', 'xx', 'ECDS', 'xx', '1', 'FTP')

  • 相关阅读:
    linux下链接静态链接库
    linux消息队列操作(转)
    android 模块编译,mm 命令
    关于函数里对指针赋值的问题
    Android内核和驱动篇Android内核介绍 (转)
    pthread属性使用(转)
    MOD_INC_USE_COUNT和MOD_DEC_USE_COUNT(转)
    linux下配置文件的读写
    从Linux程序中执行shell(程序、脚本)并获得输出结果(转)
    封装错误信息打印的函数
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13349249.html
Copyright © 2011-2022 走看看