在桌面创建一个记事本文件,然后吧这句话复制进去for /r . %%a in (.) do @if exist "%%a\.svn" rd /s /q "%%a\.svn" 然后保存,再把记事本文件重命名 叫 删除SVN信息.bat ,这时候要注意后缀名不是txt而是bat 了,然后双击这个批处理文...
分类:
其他好文 时间:
2014-06-28 22:33:55
阅读次数:
217
BACKGROUND INFORMATIONVarious mechanisms exist for managing memory in a virtual machine environment. A virtual machine platform typically executes an ...
分类:
其他好文 时间:
2014-06-28 14:53:29
阅读次数:
320
android开发过程中突然发现的warningEditText 报出 “This text field does not specify an inputType or a hint”原因:EditText需要指定默认输入类型加入android:inputType="number|phone",表...
分类:
移动开发 时间:
2014-06-21 11:20:23
阅读次数:
219
在开发中用到ArcGIS, 导入iOS ArcGIS sdk,之后报错,报错信息如标题,查了下问题,应该是使用的ArcGIS版本(ArcGIS runtime SDK for iOS 10.1)不支持 armv7s架构的cpu(iPhone 5s),处理方式Build Settings->Architectures->Valid Architectures, 把 arm64和armv7s删去,把B...
分类:
移动开发 时间:
2014-06-19 09:34:48
阅读次数:
1118
#includevoid equal(int a[],int N){ int i; for(i=0;i<N;i++) { if(i<a[i]) { printf("no exist\n"); printf("%...
分类:
其他好文 时间:
2014-06-18 17:49:42
阅读次数:
191
The JavaDoc says:SQLQuery org.hibernate.SQLQuery.addScalar(String columnAlias, Type type)Declare a scalar query resultI know whatexecuteScalaris in C#...
分类:
其他好文 时间:
2014-06-17 21:28:36
阅读次数:
236
今天遇到一个问题,在使用jquery的$.post()方法时,没有办法返回布尔值。function check_exist() { var email = $('#email').val().Trim(); url = "/Acco...
分类:
Web程序 时间:
2014-06-17 14:53:51
阅读次数:
868
客户提交一个dump文件,WinDbg加载时出现大量WARNING,加载对应版本的SOS后执行相应命令提示"SOS does not support the current target architecture"。原因在于使用了64位的任务管理器导出了32位进程的dump文件,下面是两个解决方法:...
分类:
其他好文 时间:
2014-06-15 20:04:30
阅读次数:
463
java.lang.VerifyError:Stack map does not match the one at exception handler 385 in method ... at offset 377
我使用的 jar包( 下面是认为跟这个问题有关系的jar包)如下:
antrl-3.3-complete.jar
cglib-2.2.jar
cglib-nodep-2.2.2...
分类:
编程语言 时间:
2014-06-15 16:56:08
阅读次数:
476
var ivar = [:]
ivar.className // __NSDictionaryI
var i = 1
i.className // error: 'Int' does not have a member named 'className'
If you want to get the type of a primitive, you have to use bridgeToOb...
分类:
其他好文 时间:
2014-06-14 14:28:55
阅读次数:
234