根据https://code.google.com/p/maven-android-plugin/wiki/GettingStarted 介绍,有两种方法可以创建Maven工程。第一种方法是用archetype, 但是我使用了之后,发现archetype产生的项目编译时有一个依赖找不到,不管了,先换其他方法。第二种方法就是使用android命令行创建项目,然后复制例子代码工程的pom文件并修改,U...
分类:
移动开发 时间:
2014-07-22 23:05:32
阅读次数:
410
作用:正则表达式的iOS开源库
官方文档:http://regexkit.sourceforge.net/RegexKitLite/
正则表达式 30分钟入门教程:http://www.codeproject.com/Articles/9099/The-Minute-Regex-Tutorial
使用:
1,github下载:https://github.com/samdeane/...
分类:
其他好文 时间:
2014-07-22 23:05:12
阅读次数:
419
例如我们要获取我们项目类路径下的image-manager.properties
java代码如下
import org.apache.tools.ant.taskdefs.LoadProperties;
protected String readConfig() throws FileNotFoundException, IOException {
In...
分类:
其他好文 时间:
2014-05-01 21:53:04
阅读次数:
356
git log 的用法,具体参考 git log --help,以下是个人在使用中遇见的问题,略作统计。
查看单个文件的修改差异(类似于查看单个文件的log,同时将每次log 的详细记录都显示出来):
--full-diff
Without this flag, git log -p ... shows commits that touch the specified paths,...
分类:
其他好文 时间:
2014-05-01 18:33:15
阅读次数:
324
文档一:https://wiki.debian.org/SettingUpSignedAptRepositoryWithReprepro
文档二:http://blog.jonliv.es/2011/04/26/creating-your-own-signed-apt-repository-and-debian-packages/...
分类:
其他好文 时间:
2014-05-01 18:19:21
阅读次数:
270
gitlab SSH 失败 解决方案,分享给大家 谢谢!...
分类:
其他好文 时间:
2014-05-01 18:11:29
阅读次数:
400
用apache来处理外界的请求,再把请求转发给wls,这样就能够突破wls express版本的5用户限制
具体配置如下
copy ${WLS_Server}/server/lib下的mod_wl_20.so到${apache_home}/modules下
修改httpd.conf文件
LoadModule weblogic_module modules\mod_wl_20.so
...
分类:
Web程序 时间:
2014-05-01 17:58:03
阅读次数:
417
以README文件为实例,详细介绍github的使用过程
请先下载git,然后配置以下内容: ( 我的系统是debian,其他版本的UNIX/Linux有差别),windows的暂时不清楚。
(一)
1.先下载git
$ apt-get install git-core
2.创建git用户名(Username),首先你要告诉git你的名字,这样它才能正确的给你提交的的东西...
分类:
其他好文 时间:
2014-05-01 17:26:22
阅读次数:
311
对于两个分支而言,rebase和merge没有区别,但是rebase更干净,因为log hisitory是线性的,但commit不一定按日期先后排,而是local commit总在后面,merge之后history变得比较复杂,但是commit按日期排序,stackoverflow上有个图示很好:
http://stackoverflow.com/questions/16666089/whats...
分类:
其他好文 时间:
2014-04-30 22:27:40
阅读次数:
401
header("Content-type:text/html; charset=utf-8");
function getToken($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
//相当关键,这句话是...
分类:
Web程序 时间:
2014-04-30 22:16:40
阅读次数:
373