baksmali首先执行的第一个main函数publicstaticvoidmain(String[]args)throwsIOException{
Localelocale=newLocale("en","US");
Locale.setDefault(locale);
CommandLineParserparser=newPosixParser();
CommandLinecommandLine;
try{
commandLine=parser.parse(options,args..
分类:
其他好文 时间:
2014-08-15 02:53:47
阅读次数:
261
找到文件夹ueditor\asp下的config.json文件,找到下面的代码,进行修改
"imageUrlPrefix": "/yychenxi/ueditor/asp/", /* 图片访问路径前缀 */
"imagePathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格...
分类:
Web程序 时间:
2014-08-14 20:44:59
阅读次数:
237
由于某项需求,把JDK版本从JDK6升级到了JDK7;但是签名APK之后出现了INSTALL_PARSE_FAILED_NO_CERTIFICATES的错误;解决方法:在签名时,添加参数 -digestalg SHA1 -sigalg MD5withRSAjarsigner -digestalg S...
分类:
移动开发 时间:
2014-08-14 16:31:08
阅读次数:
290
functioncomptime(beginTime,endTime){varbeginTimes=beginTime.substring(0,10).split('-');varendTimes=endTime.substring(0,10).split('-');//parse方法要求短日期可以...
分类:
Web程序 时间:
2014-08-14 16:29:38
阅读次数:
203
曾经我写了很多逻辑来比较俩个时间的大小。总结下简单的方法。 JS 比较两个时间的大小 if(Date.parse($fromtime.replace(/\-/g,"/"))>Date.parse($endtime.replace(/\-/g,"/"))){tipslog('活动结束时间不能...
分类:
其他好文 时间:
2014-08-14 10:27:18
阅读次数:
164
今天发现了一个特郁闷的事情,在调用百度编辑的时,window.UEDITOR_HOME_URL = "";window.onload = function(){ window.UEDITOR_CONFIG.initialFrameWidth = 600; window.UEDITOR_CONFIG....
分类:
其他好文 时间:
2014-08-13 17:46:16
阅读次数:
193
Newtonsoft.Json类库下载:http://json.codeplex.com///使用JObject读写字符串 JObject jop = JObject.Parse(loginResult); string[] values ...
分类:
Web程序 时间:
2014-08-13 14:52:56
阅读次数:
203
1.javax.xml.parsers 包中的DocumentBuilderFactory用于创建DOM模式的解析器对象 , DocumentBuilderFactory是一个抽象工厂类,它不能直接实例化,但该类提供了一个newInstance方法 ,这个方法会根据本地平台默认安装的解析器,自动创建一个工厂的对象并返回
2.调用 DocumentBuilderFactory.newInstanc...
分类:
编程语言 时间:
2014-08-13 13:13:46
阅读次数:
1352
将字符串形式的日期转换成日期对象var strTime="2011-04-16"; //字符串日期格式var date= new Date(Date.parse(strTime.replace(/-/g,"/")));//转换成Data();var month=date.getMonth()+1; ...
分类:
Web程序 时间:
2014-08-13 12:55:26
阅读次数:
213
1. SQL Server存储过程创建和修改(4207)2. 百度编辑器UEditor常用设置函数大全(2501)3. SoSoft项目之C# WinForm托盘图标实例(2469)4. C# WinForm创建包含备注的快捷方式实例(2141)5. .NET配置文件读写实例(附SosoftConf...
分类:
其他好文 时间:
2014-08-12 03:04:53
阅读次数:
265