程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL數據庫優化推舉的編譯裝置參數小結

MySQL數據庫優化推舉的編譯裝置參數小結

編輯:MySQL綜合教程

MySQL數據庫優化推舉的編譯裝置參數小結。本站提示廣大學習愛好者:(MySQL數據庫優化推舉的編譯裝置參數小結)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL數據庫優化推舉的編譯裝置參數小結正文


本文實例講述了python應用7z解壓apk包的辦法。分享給年夜家供年夜家參考。詳細以下:

這段代碼經由過程shell挪用7z對apk包停止解緊縮

def run_shell(command, mayFreeze=False):
 def check_retcode(retcode, cmd):
 if 0 != retcode:
 print >> sys.stderr, 'err executing ' + cmd + ':', retcode
 sys.exit(retcode)
 def read_close(f):
 f.seek(0)
 d = f.read()
 f.close()
 return d
 #print >> sys.stderr, '-- Executing', command
 if mayFreeze:
 tempout, temperr = tempfile.TemporaryFile(), tempfile.TemporaryFile()
 #open(os.devnull, 'w')
 p = subprocess.Popen(command, stdout=tempout, stderr=temperr)
 p.wait()
 output, errout = read_close(tempout), read_close(temperr)
 else:
 p=subprocess.Popen(command,stdout=subprocess.PIPE,stderr=subprocess.PIPE)
 output = p.stdout.read()
 p.wait()
 errout = p.stderr.read()
 p.stdout.close()
 p.stderr.close()
 #check_retcode(p.returncode, command)
 return (output.strip(), errout.strip())
#z7 is the full path to 7z.exe
#at times you have to encode the command into GBK/UTF8
run_shell(u'{0} -y -o"{1}" {2} x "{3}"'.format(z7, tempdir, icon, apk))
shutil.copy(u'{0}/{1}'.format(tempdir,os.path.basename(icon)),dst_path)

願望本文所述對年夜家的Python法式設計有所贊助。

/> font-size: 20px;color: #f9f9f9;background:transparent
}

.search_ico,.search_btn {
width: 60px;height: 60px;display: block;
position: absolute;right: 0;top: 0;
padding: 0;margin: 0;line-height: 60px;cursor: pointer;
}

.search_ico{background: #e67e22 url(icon.png) no-repeat 18px 20px;z-index:90;}
.search_open{width: 100% !important; z-index:1002}
#show{position:absolute; padding:20px}

上述代碼中症結的是transition: width 0.3s可以完成CSS3的動畫後果,width由0釀成100%,詳細年夜家可以去看下CSS3手冊相干引見,這裡不多描寫,你可以直接復制和修正代碼運用到你的項目中去。

jQuery

當點擊搜刮按鈕時,搜刮條.search_bar經由過程toggleClass()切換款式.search_open,這就完成了搜刮條壓縮和舒展功效。別的我們還須要斷定輸出情形,當輸出知足前提時,提交搜刮表單完成搜刮功效,請看代碼:
 


$(function(){
$(".search_ico").click(function(){
$(".search_bar").toggleClass('search_open');
var keys = $("#search").val();
if(keys.length>2){
$("#search").val('');
$("#myform").submit();
}else{
return false;
}
});
});

該後果可以應用到挪動端項目中,固然你也能夠添加手動滑動後果。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved