摘要:
After checking out the source code run the following command from the top-level directory: $ ant clean package eclipse-files
Now open up Eclipse and do the following:File->Import->General->Existing Projects Into Workspace->Select root directory (point to )Make sure that Eclipse Java Comp 阅读全文
阅读排行榜
项目经理如何提升效率
2013-01-30 11:37 by java20130722, 203 阅读, 收藏,
摘要:
1每周做回顾并做下周计划;2严格自律;3把时间花在有成果行为和对话;4为突发状况预留时间;5每天先花半小时做当天计划;6做事前花5分钟确认结果;7完成重要工作时排除一切外部干扰8别忙着接电话回邮件除非VIP客户;9屏蔽社交网站;10你不是超人,不可能完成所有事! 阅读全文
Ubuntu下使用VI编辑文件必知的常用命令
2012-09-07 13:51 by java20130722, 203 阅读, 收藏,
摘要:
Ubuntu下使用VI编辑文件必知的常用命令 进入vi的命令vi filename :打开或新建文件,并将光标置于第一行首 vi +n filename :打开文件,并将光标置于第n行首 vi + filename :打开文件,并将光标置于最后一行首 vi +/pattern filename:打开文件,并将光标置于第一个与pattern匹配的串处 vi -r filename :在上次正用vi编辑时发生系统崩溃,恢复filename vi filename....filename :打开多个文件,依次进行编辑 移动光标类命令 h :光标左移一个字符 l :光标右移一个字符 space:光标右 阅读全文
QuickSort(Java)
2012-09-20 08:17 by java20130722, 202 阅读, 收藏,
摘要:
实现代码:public class QuickSort { public void sort(int[] input) { quickSort(input, 0, input.length - 1); } private void quickSort(int[] input, int begin, int end) { if (begin >= end) return; int mid = partition(input, begin, end); quickSort(input, begin, mid-... 阅读全文
创建Contentprovider,
2013-03-14 11:13 by java20130722, 201 阅读, 收藏,
摘要:
创建Contentprovider:1. 创建一个provider----ExampleContentProvider设计Content URIs(a. 设计authority b. 设计path c.处理content URI IDs d.Content URI patterns)实现Provider中必须的方法(query()insert()update()delete()getType()onCreate())定义MIME Types(getType()One of the required methods that you must implement for any provider 阅读全文
浙公网安备 33010602011771号