pycharm 에서 os.system 명령 을 실행 하여 중국어 코드 가 있 는 문 제 를 되 돌려 줍 니 다.

다음 과 같다.

source = ['C:\\Users\\admin\\Desktop\\pythonLearning']
target_dir = 'C:\\Users\\admin\\Desktop'
 
print(time.strftime('%Y%m%d%H%M%S'))
 
target = target_dir + os.sep + time.strftime('%Y%m%d%H%M%S') + '.zip'
if not os.path.exists(target_dir):
 os.mkdir(target_dir)
 
zip_command = 'HaoZipC a {0} {1}'.format(target, ' '.join(source))
 
type = sys.getfilesystemencoding()
print('   :', type)
 
 
print('Zip command is:')
print(zip_command)
print('Running:')
result = os.system(zip_command)
if result == 0:
 print('Successful backup to', target)
else:
 print('Backup FAILED')
콘 솔 복귀:
20170811100310
유형:utf-8
Zip command is:
HaoZipC a C:\Users\admin\Desktop\20170811100310.zip C:\Users\admin\Desktop\pythonLearning
Running:
����ɨ���ļ�...
����ѹ���ĵ� C:\Users\admin\Desktop\20170811100310.zip
��ѹ���ļ���C:\Users\admin\Desktop\pythonLearning\byte-of-python-chinese-edition.pdf
��ѹ���ļ��� C:\Users\admin\Desktop\pythonLearning\byte-of-python.pdf
��ѹ���ļ��� C:\Users\admin\Desktop\pythonLearning\python�˹�����.png
해결 방법:

Global Encoding 을 gbk 로 설정 하면 다음 과 같이 정상적으로 표시 할 수 있 습 니 다.
20170811100615
유형:utf-8
Zip command is:
HaoZipC a C:\Users\admin\Desktop\20170811100615.zipC:\Users\admin\Desktop\pythonLearning
Running:
파일 검색 중...
압축 문서 만 들 기 C:\\Users\admin\\Desktop\20170811100615.zip
파일 압축 중:C:\\Users\admin\\Desktop\python Learning\\byte-of-python-chinese-edition.pdf
IDE 인 코딩 이 utf-8 로 설정 되 지 않 기 때문에 gbk 로 설정 해 야 합 니 다.이 콘 솔 의 코드 는 windows 와 일치 해 야 하기 때 문 입 니 다.
이상 pycharm 에서 os.system 명령 을 실행 하고 중국어 코드 가 있 는 문 제 를 해결 하 는 것 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.참고 하 시 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기