JayceLi  
上一页 1 ··· 8 9 10 11 12 13 下一页

2010年11月30日

摘要: 1,删除文件rm 文件名 2,删除空文件夹rd 文件夹名 3,删除非空文件夹(/s表示删除此文件夹及其下所有文件,/q表示不再询问是否确定删除,这里/q可要可不要)rd /s/q 文件夹名 阅读全文
posted @ 2010-11-30 16:19 JayceLi 阅读(265) 评论(0) 推荐(0) 编辑
 
摘要: linux的chmod命令使用详解使用方式 : chmod [-cfvR] [--help] [--version] mode file...说明 : Linux/Unix 的档案存取权限分为三级 : 档案拥有者、群组、其他。利用 chmod 可以藉以控制档案如何被他人所存取。mode : 权限设定字串,格式如下 : [ugoa...][[+-=][rwxX]...][,...],其中:u 表示该... 阅读全文
posted @ 2010-11-30 15:25 JayceLi 阅读(152) 评论(0) 推荐(0) 编辑
 
摘要: 一)MD——建立子目录 1.功能:创建新的子目录2.类型:内部命令3.格式:MD[盘符:][路径名]〈子目录名〉4.使用说明:(1)“盘符”:指定要建立子目录的磁盘驱动器字母,若省略,则为当前驱动器;(2)“路径名”:要建立的子目录的上级目录名,若缺省则建在当前目录下。例:(1)在C盘的根目录下创建名为FOX的子目录;(2)在FOX子目录下再创建USER子目录。C:、>MD FOX (在当前驱动器... 阅读全文
posted @ 2010-11-30 13:59 JayceLi 阅读(109) 评论(0) 推荐(0) 编辑

2010年11月29日

摘要: 删除当前目录中所有文件rm -r * 查看文件大小 (-k单位为KB,-m单位为M)du -k 文件名 阅读全文
posted @ 2010-11-29 17:55 JayceLi 阅读(98) 评论(0) 推荐(0) 编辑

2010年11月23日

摘要: 此要写在setNegativeButton或setPositiveButton等setButton的OnClickListener的OnClick里,且每个按钮都要单独写一次,因为对mDialog的field的改变相对于此对象来说是全局的try{Field field = mDialog.getClass().getSuperclass().getDeclaredField("mShowing")... 阅读全文
posted @ 2010-11-23 16:11 JayceLi 阅读(434) 评论(0) 推荐(0) 编辑
 
摘要: 在自己的TreeView中加上OnClick的函数void CTree1::OnClick(NMHDR* pNMHDR, LRESULT* pResult) {// TODO: Add your control notification handler code hereUINT nflags;CPoint point;//这里是获取鼠标当前点击子项的方法GetCursorPos(&point);... 阅读全文
posted @ 2010-11-23 13:24 JayceLi 阅读(1119) 评论(0) 推荐(0) 编辑
 
摘要: //SampleView可以是各种View或ViewGroupView SampleView;SampleView.setBackgroundResource(android.R.drawable.list_selector_background);SampleView.setFocusableInTouchMode(true);SampleView.requestFocus();//想设置Vie... 阅读全文
posted @ 2010-11-23 10:40 JayceLi 阅读(316) 评论(0) 推荐(0) 编辑
 
摘要: /*开发环境准备,如在VC6.0中将目录C:\JDK\include和C:\JDK\include\win32加入到开发环境的Include Files目录中,同时将C:\JDK\lib目录添加到开发环境的Library Files目录中。*///Sample.cpp#include "windows.h" #include "jni.h" #include #include usin... 阅读全文
posted @ 2010-11-23 10:28 JayceLi 阅读(242) 评论(0) 推荐(0) 编辑

2010年11月15日

摘要: RingtoneManagerhttp://topic.csdn.net/u/20110329/14/dc7c8421-8202-4a52-afb3-46e22e0628f7.html?97297 Google Map开发http://www.knowsky.com/541924.html 获得Google Maps API Keyhttp://qinglangee.javaeye.com/blo... 阅读全文
posted @ 2010-11-15 15:44 JayceLi 阅读(263) 评论(0) 推荐(0) 编辑

2010年11月12日

摘要: 在Run里输入iexplore即可,在CMD里是不行的 阅读全文
posted @ 2010-11-12 10:59 JayceLi 阅读(254) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 下一页