摘要:
一:Eclipse(1)删除当前行:Ctrl+D(2)最大化当前编辑窗口:Ctrl+m(3)关闭当前编辑器窗口:Ctrl+F4/Ctrl+w(4)导入依赖包:Ctrl+Shift+o二:NetBeans(1)删除当前行:Ctrl+E(2)导入依赖包:Ctrl+Shift+i三:Android Stu... 阅读全文
摘要:
一次非正常关闭weblogic之后,再次启动时启动不成功,一直提示: 解决方法:进入域目录:y@y:~$ cd oracle/middleware/user_projects/domains/yshy_domain/(1)删除edit.lok(2)进入config目录删除config.lok(3)y... 阅读全文
摘要:
错误信息如下:Error:Could not find any version that matches com.android.support:appcompat-v7:22+.Searched in the following locations:https://jcenter.bintray.... 阅读全文
摘要:
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getWindow().addFlags(WindowMana... 阅读全文
摘要:
--加法 select sysdate,add_months(sysdate,12) from dual; --加1年 select sysdate,add_months(sysdate,1) from dual; --加1月 select sysdate,to_... 阅读全文
摘要:
public class ImgeUtils { public static String img2String(BufferedImage img,String type){ String imgStr = null; ByteArrayOutp... 阅读全文
摘要:
Kc.find({bjid:req.params.bjid}).sort({'_id':1}).exec(function(err,kcs){ if(err){ res.json({no:0,msg:err}); }else{ var result = {no:1};... 阅读全文
摘要:
#匹配APK下载 location ~*.(apk)$ { root /var/workspace/download; } #http://xxxx/nsrxt_png/A000000.png ... 阅读全文
摘要:
Node应用,使用formidable处理文件上传,本地测试没有问题,部署到服务器上之后上传大文件浏览器收到以下错误信息:Failed to load resource: the server responded with a status of 413 (Request Entity Too La... 阅读全文
摘要:
1:当前环境y@y:~$ node --version && express -V && mongo --versionv0.12.24.9.0MongoDB shell version: 2.4.9y@y:~$ 2:新建工程目录y@y:express-test$ express demo01y@y... 阅读全文