码迷,mamicode.com
首页 >  
搜索关键字:utf    ( 33305个结果
python读取文本、配对、插入数据脚本
#-*- coding:UTF-8 -*-#-*- author:Zahoor Wang -*-import codecs, os, sys, platform, stringdef env():return platform.system()def read_file(uri, charset =...
分类:编程语言   时间:2014-05-16 04:30:50    阅读次数:306
ubuntu 12.04 eclipse增加桌面快捷方式
1、创建桌面启动器(编辑/usr/share/applications/eclipse.desktop) 1 [Desktop Entry] 2 Encoding=UTF-8 3 Name=eclipse 4 Comment=Eclipse IDE 5 Exec=/opt/eclipse/eclip...
分类:系统相关   时间:2014-05-16 00:50:16    阅读次数:415
用Python更改图片尺寸大小
1、PIL包推荐Pillow。2、源码:#encoding=utf-8 #author:walker #date:2014-05-15 #function:更改图片尺寸大小 importos importos.path fromPILimportImage ‘‘‘ filein:输入图片 fileout:输出图片 width:输出图片宽度 height:输出图片高度 type:输出图片类型(png,gif,jpeg.....
分类:编程语言   时间:2014-05-15 19:07:57    阅读次数:266
linux下文件字符编码转换
1.查看编码 通过file命令 file filename 可以查看文件的编码2.编码转换 通过icnov命令 iconv -f UTF-16 -t UTF-8 sourceFile -o targetFile 此命令将UTF-16格式的sorceFile转换为UTF-8的targetFile
分类:系统相关   时间:2014-05-15 17:21:30    阅读次数:328
vim 设置编码
set enc=utf-8centos修改 /etc/vimrcubuntu修改:/etc/vim/vimrc
分类:其他好文   时间:2014-05-15 14:33:51    阅读次数:200
pexpect练习实例--批量执行远程服务器上的指定脚本
经过几天的学习,pexpect模块对于linux下运维脚本编写属实有用,下面写个脚本检验下学习效果。#!/usr/bin/envpython #coding=utf-8 #远程执行服务器上的脚本 importsys,time,os,multiprocessing try: importpexpect exceptImportError: print""" Youmustinstallpexpectmodule "..
分类:其他好文   时间:2014-05-15 12:55:28    阅读次数:260
无比强大!Python抓取cssmoban网站的模版并下载
Python实现抓取http://www.cssmoban.com/cssthemes网站的模版并下载 实现代码 # -*- coding: utf-8 -*- import urlparse import urllib2 import re import os import os.path URL='http://www.cssmoban.com/cssthemes' #全局...
分类:编程语言   时间:2014-05-15 09:17:50    阅读次数:423
servlet 发送到客户端的数据编码设置
setCharacterEncoding void setCharacterEncoding(java.lang.String charset) Sets the character encoding (MIME charset) of the response being sent to the client, for example, to UTF-8. If the character...
分类:其他好文   时间:2014-05-15 01:36:58    阅读次数:233
PHP显示中文乱码
<?phpheader("content-type:text/html;charset=utf-8");?>
分类:Web程序   时间:2014-05-15 00:46:50    阅读次数:284
15-5-13日记
标签<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">//声明标签标签都是成对的!<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><!--utf-8/gb2312防止乱码--><..
分类:其他好文   时间:2014-05-15 00:42:11    阅读次数:302
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!