凤眠

先行后知,知行合一

导航

2015年8月4日

摘要: javax.servlet.ServletException: java.lang.LinkageError: loader constraint violation: when resolving method "org.apache.jasper.runtime.InstanceManagerF... 阅读全文

posted @ 2015-08-04 20:31 凤眠 阅读(4352) 评论(0) 推荐(0) 编辑

2015年8月3日

摘要: File->Settings->Editor->Colors & Fonts->Console FontSize: 16 阅读全文

posted @ 2015-08-03 15:15 凤眠 阅读(28839) 评论(0) 推荐(0) 编辑

摘要: File->Settings->Editor->File EncodingsIDE Encoding: UTF-8Project Encoding: UTF-8 阅读全文

posted @ 2015-08-03 14:56 凤眠 阅读(2915) 评论(0) 推荐(0) 编辑

2015年7月15日

摘要: 开发过程中,字符串与十六进、二进制之间的相互转换常常会用到,尤其是涉及到中文的加密时,就需要把中文转换为十六进制。下面说说具体的转换方法。 1、字符串转换为十六进制 主要使用 charCodeAt()方法,此方法返回一个字符的 Unicode 值,该字符位于指定索引位置。 function... 阅读全文

posted @ 2015-07-15 17:22 凤眠 阅读(32936) 评论(3) 推荐(0) 编辑

2015年5月2日

摘要: @echo offrem @echo off rem 取1天之前的日期echo wscript.echo dateadd("d",-1,date) >%tmp%\tmp.vbs for /f "tokens=1,2,3* delims=/" %%i in ('cscript /nologo %tmp... 阅读全文

posted @ 2015-05-02 12:46 凤眠 阅读(309) 评论(0) 推荐(0) 编辑

摘要: if not exist folder md folder如果不存在folder就用md命令建立文件夹 阅读全文

posted @ 2015-05-02 12:40 凤眠 阅读(116) 评论(0) 推荐(0) 编辑

2015年4月17日

摘要: $fp = fopen($filename, "w");fwrite($fp, json_encode($userinfo));fclose($fp);date("H:i:s");SELECT * FROM t_details WHERE nickname IS NULLif (strlen($fo... 阅读全文

posted @ 2015-04-17 12:45 凤眠 阅读(154) 评论(0) 推荐(0) 编辑

2015年4月11日

摘要: function delfile($filename){ if (!file_exists($filename)) { return; } if (!is_dir($filename)) { unlink($filename); retur... 阅读全文

posted @ 2015-04-11 15:54 凤眠 阅读(198) 评论(0) 推荐(0) 编辑

2015年3月25日

摘要: $ git remote add origin https://github.com/heyuanchao/YouxibiClient.gitfatal: Not a git repository (or any of the parent directories): .git解决方法:git in... 阅读全文

posted @ 2015-03-25 11:24 凤眠 阅读(285) 评论(0) 推荐(0) 编辑

2015年3月18日

摘要: How do I install XAMPP?Choose your flavor for your linux OS, the 32-bit or 64-bit version.Change the permissions to the installerchmod 755 xampp-linux... 阅读全文

posted @ 2015-03-18 10:55 凤眠 阅读(379) 评论(0) 推荐(0) 编辑