- 浏览: 54111 次
- 性别:
- 来自: 成都
最新评论
文章列表
fileManager的基本应用:查看列表
NSFileManager *fileManager=[NSFileManager defaultManager];
NSArray *documentPaths=NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory,NSAllDomainsMask , YES);
for (NSString *str in documentPaths) {
NSLog(@"documentPaths:%@",st ...
/* Localized versions of Info.plist keys */
dddddddppp
/*哈哈,我是新手*/
查看根目录下的文件列表
NSArray *leveList=
[[[NSFileManager alloc]init] contentsOfDirectoryAtPath: [NSHomeDirectory() stringByAppendingPathComponent:@""] ...
//读取plist
supporting Files:helloword-info.plist文件
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"" ofType:@"plist"];
NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
...
NSDate
NSCalendar
NSDateFormatter
NSDate *now=[NSDate date];
NSCalendar *cal=[[NSCalendar alloc]
initWithCalendarIdentifier:NSGregorianCalendar
];
[cal setTimeZone:[NSTimeZone systemTimeZone]]; // 3
NS ...
06-08 07:08:27.245: D/libEGL(408): egl.cfg not found, using default config
06-08 07:08:27.254: D/libEGL(408): loaded /system/lib/egl/libGLES_android.so
06-08 07:08:27.804: E/OpenGLES(408): Application com.example.jboxhaha (SDK target 17) called a GL11 Pointer method with an indirect Buffer.
06-08 07: ...
1.ls -l | grep 'jar' | awk {'print $9'}
2.dir
3.linux时间修改
date -s 2013-04-27
date -s 09:53:00
svn log --stop-on-copy http://--------/branches/v_20130527_migrate
都是在本地主干目录下D:\360buy\jbox-work\workspace_001\truck\trunk操作:
svn merge --dry-run -r9271:HEAD http://-/branches/v_20130527_migrate>&g ...
spring文件没有加载进去,原因是部署包的放置路径错误
1.ROOT下检查
2.是ROOT.XML中对应的文件放置路径,检查
3.检查是否有少包
4.检查包中对应的配置信息
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
</exclusion>
</exclusions>
pom.xml-->Dependency Hierarchy-- ...
[size=large]java.io.FileNotFoundException: /data/download.txt (Permission denied) android
[/size]
1.添加配置文件
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission and ...
编写了public class DrawView extends View
this与DrawView.this有什么区别???
如果在内部类 里就用DrawView.this
当前类 就一样的
如果在内部类里面的this就是这个内部类的实例,而OuterClassName.this就是它外面的那个类的实例。看起来是Android编程吧,应该是写了一个listener的匿名类?
如果是的话,那么this就是指这个listener实例,而LunchList.this就是外面的类,可能是Activity吧
如果我在OnCreate(Bundle savedInstanceState)里定 ...
android开发实例
>>点击按钮来改变文本内容的显示
1.实例化按钮对象
2.按钮增加点击事件
3.触发事件里实例化文本对象,设置文本内容
4.xml中要有对应的标签
>>多个图片点击显示
1.定义图片数组,图片放到文件夹res/drawable-xhdpi下
2.实例化线性布局容器
3.定义图片视图组件
4.把视图加入到容器中
5.添加图片路径,添加图片点击事件
6.里面不断的循环加载图片组的图片,数组遍历,
重新设置图片加载路径
注意:把图片组件加载到容器中,不要忘记
>>跟随手指的小球
1.自定义DrawView组件
创建画笔,设置画笔颜色, ...
1.Can't bind to local 8600 for debugger
重启 模拟器和eclipse 把 adb进程杀掉
任务管理器啊或者cmd:adb kill-server
重启eclipse 就行了啊
2.android Could not open Selected VM debug port (8700)
I solved it by ending the process "adb.exe" through Task Manager and then reloading the SDK through Windows->Preferenc ...
JAVA_HOME=C:\Program Files (x86)\Java\jdk1.6.0_26
MAVEN_HOME=D:\apache-maven-3.0.4
ANDROID_SDK_HOME=C:\android\android-sdk_r18-windows
CLASS_PATH=.;%JAVA_HOME%\jre\lib\rt.jar;JAVA_HOME\lib\tools.jar;
Path=
C:\Program Files (x86)\Common Files\NetSarang;C:\Windows\system32;
C:\Windows;C:\Windows\Syst ...
各种音频编码方式的比对
参考网址:http://www.cppblog.com/fwxjj/archive/2009/05/27/85918.html
http://jaist.dl.sourceforge.net/project/mpc-hc/MPC%20HomeCinema%20-%20x64/MPC-HC_v1.6.6.6957_x64/MPC-HC.1.6.6.6957.x64.zip
http://universal-downloader-us.softonic.cn/72000/72054/2de50/FFSetup3-0-1.zip?AWSAccessKeyId=AKIAI3P ...
辨别常见与不常见音乐文件格式的质量好坏!
要在计算机内播放或是处理音频文件,也就是要对声音文件进行数、模转换,这个过程同样由采样和量化构成,人耳所能听到的声音,最低的频率是从20Hz起一直到最高频率20KHZ,20 ...
Session与Cookie的比较 2010-06-23 18:45:34
分类: Java
Cookie与Session都可以进行会话跟踪,但是实现的原理不太一样。一般情况下二者均可以满足需求,但有时候不可以使用Cookie,有时候不可以使用Session。下面通过比较说明二者的特点以 ...