码迷,mamicode.com
首页 >  
搜索关键字:file path    ( 77533个结果
MonkeyRunner (三)
Running monkeyrunnerYou can either run monkeyrunner programs from a file, or enter monkeyrunner statements in an interactive session. You do both by i...
分类:其他好文   时间:2014-05-26 15:07:58    阅读次数:263
【三分钟教程】轻松使用XMPP实现iOS单聊教程(附源码)
编号需要修改的代码1//// Prefix header//// The contents of this file are implicitly included at the beginning of every source file.//#import//服务器IP#define kXMPP...
分类:移动开发   时间:2014-05-26 14:51:52    阅读次数:782
c起步之hello world!
基本上最初的编程都会拿hello world来说事,其实能简单的运行出它来,c的编程环境就慢慢熟悉起来了。1.现在已经基本没有纯粹的c编译环境了,都是用兼容c++的编译工具来编译c,所以创建的都是c++模板;2.在vs2008 中建立一个project(c代码)步骤:1.file——new--pro...
分类:其他好文   时间:2014-05-26 14:42:19    阅读次数:203
php 遍历文件及文件夹
\n"; while($file = $mydir->read()) { if((is_dir("$directory/$file")) AND ($file!=".") AND ($file!="..")) { echo "$fi...
分类:Web程序   时间:2014-05-26 14:22:05    阅读次数:239
FilenameFilter用法
使用FilenameFilter实现图片过滤,只要.gif,.jpg,.png文件。java 代码public class ImageFilter implements FilenameFilter{ public boolean isGif(String file) { ...
分类:其他好文   时间:2014-05-26 13:30:14    阅读次数:231
bk-0522
FORMdown_load_file_excelUSINGi_dataout2.*datagt_file_vat_exceltypeSTANDARDTABLEOF.*StartingdownloadDATA:l_lcobj_excelTYPEole2_object,l_lcobj_workbookT...
分类:其他好文   时间:2014-05-26 13:10:06    阅读次数:322
android使用apktool反编译出现Input file (d:\t) was not found or was not readable
Input file (d:\t) was not found or was not readable 出现这个错误是因为apktool压缩包下载错误,我是下成首页的那个压缩包了 正确下载地址:https://code.google.com/p/android-apktool/downloads/l...
分类:移动开发   时间:2014-05-26 12:35:23    阅读次数:1117
MyEclipse10下创建web项目并发布到Tomcat
MyEclipse10下创建web项目并发布到Tomcat1、软件安装(不作详细描述)2、启动MyEclipse103、File-New-Project,选中Web Project,点击Next(或者直接File-New-Web Project)4、在Web Project Details的Proj...
分类:Web程序   时间:2014-05-26 12:16:15    阅读次数:298
Leetcode: Path Sum II
这是一道很常见的题,看题的时候看漏了root to leaf的leaf,以为只要从root开始就可以了,太不仔细了,sigh~ 其实类似的题目在Career Cup的4.9,那个题是任意路径,不必从root到leaf,要求更高。一直以来我都有这样的疑问,迭代的变量(如下例中的path、total)如...
分类:其他好文   时间:2014-05-26 12:09:21    阅读次数:329
Android -- 重置Bitmap大小&&Bitmap转角度
重置Bitmap大小 Bitmap bitMap = BitmapFactory.decodeFile(path);int width = bitMap.getWidth();int height = bitMap.getHeight();// 设置想要的大小int newWidth = 500;i...
分类:移动开发   时间:2014-05-26 12:07:00    阅读次数:263
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!