- 浏览: 5628 次
- 性别:
- 来自: 北京
最新评论
文章列表
window查看端口使用
- 博客分类:
- windows
window查看端口使用:
1:netstat -aon | findstr "3306"
TCP 0.0.0.0:3306 0.0.0.0:0 LISTENING 2956
2:tasklist | findstr "2956"
mysqld.exe 2956 Services 0 451,820 K
3:taskkill - ...
myeclipse设置jdk内存
- 博客分类:
- java
myeclipse 2015设置jdk内存
1:window --> preferences --> java --> Installed JREs
2:选择jdk --> edit
3:在Default VM arguments填写
-Xms512m -Xmx512m -XX:PermSize=256M -XX:MaxPermSize=512M
/**
* 切分List
* @param lists 切分后每个List大小限制
* @param limit
* @return List<List<String>>
*/
public List<List<String>> disperseList(List<String> lists, int limit) {
if (lists == null) {
return null;
}
int size = lists.size();
ArrayList<List<String ...
String格式化输出:
使用String类format()
1:数字前面补全0
String.format("%04d",88) 输出:0088
2:左对齐
System.out.printf("|%-4d|",88) 输出:|88 |
MultiFieldQueryParser
- 博客分类:
- Lucene
摘自lucene官网
public static Query parse(String[] queries,
String[] fields,
BooleanClause.Occur[] flags,
Analyzer analyzer)
throws ParseException
Parses a query, searching on the fields specified. Use this if you need to specify certain fields as r ...
转载:http://www.ibm.com/developerworks/cn/java/j-lo-lucene1/
Lucene 简介
Lucene 是一个基于 Java 的全文信息检索工具包,它不是一个完整的搜索应用程序,而是为你的应用程序提供索引和搜索功能。Lucene 目前是 Apache Jakarta 家族中的一个开源项目。也是目前最为流行的基于 Java 开源全文检索工具包。
目前已经有很多应用程序的搜索功能是基于 Lucene 的,比如 Eclipse 的帮助系统的搜索功能。Lucene 能够为文本类型的数据建立索引,所以你只要能把你要索引的数据格式转化的文本的,Luc ...
java获取指定时间后的日期
- 博客分类:
- java
java获取指定时间后的日期:
/**
* 获取指定时间后x天后的日期
* @param: day 指定x天
* @param: now 现在时间
* @date: 2016年1月5日 10:18:26
*/
public Date getAppointedDaysLater(int day,Date now) {
...
git github的简单操作
- 博客分类:
- git
git github的简单操作:
1:在github上创建项目,并拷贝其地址
2:进入工作目录,把项目克隆到本地
例:git clone https://github.com/xxx(github用户帐号)/xxx(项目名称).git
3:向本地仓库添加文件
例:git add src//添加文件
git commit -m "说明"//提交到本地仓库
4:推送到github服务器
例:git push origin master
5:从服务器 ...