2012年12月31日
摘要: 在php中调用bash shellsystem("/home/app/clean_queue.sh", $retval);clean_queue.sh如下:#!/bin/bashsid="/data/httpsqs/queue"pid=`ps -ef|grep -v grep|grep $sid|sed -n '1P'|awk '{print $2}'`while [ -n "$pid" ] doecho "queue id=$pid"kill $pid pid=`ps -ef|gr 阅读全文
posted @ 2012-12-31 19:54 jenqz 阅读(2018) 评论(0) 推荐(0) 编辑
摘要: 总是提示项目解析json数据时发现报 10-12 02:36:35.964: W/System.err(323): org.json.JSONException: Value of type java.lang.String cannot be converted to JSONObject 错误异常,无论更改header的编码还是用纯英文数据都依然提示,搜索一下错误提示,发现有人说是记事本(notepad.exe)保存的php文件保存时带有bom头,解决方案大概有下面几种:1.继续用记事本保存成ansi就没问题了;2.换个编辑器重新保存;3.前面两种情况还是防不胜防,据说在and... 阅读全文
posted @ 2012-12-31 13:49 jenqz 阅读(317) 评论(0) 推荐(0) 编辑