- 浏览: 87212 次
- 性别:
- 来自: 上海
最新评论
-
antony102201:
用这个读取的时候有几个PDF文件读不出来,请问是程序有什么要提 ...
pdfbox 例子 -
xyliufeng:
是httpclient3
httpclient设置连接超时读取数据超时 -
dawndon:
你用的是httpclient 3吧,应该不是4吧?
httpclient设置连接超时读取数据超时 -
tan8888:
wuxiaoqqqq 写道你好,我用的TermsCompone ...
Solr 查询 Ajax autoComplete 实现 -
wuxiaoqqqq:
你好,我用的TermsComponent组件只能返回词,不能返 ...
Solr 查询 Ajax autoComplete 实现
文章列表
NAME
Wget - The non-interactive network downloader.
SYNOPSIS
wget [option]... [URL]...
DESCRIPTION
GNU Wget is a free utility for non-interactive download
of files from the Web. It supports HTTP, HTTPS, and FTP
protocols, as well as retrieval through H ...
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing. ...
import java.util.Random;
public class RandomNumber{
public static void main(String[] args) {
// 使用java.lang.Math的random方法生成随机数
System.out.println("Math.random(): " + Math.random());
// 使用不带参数的构造方法构造java.util.Random对象
System.ou ...
以前,在看Spring AOP代理时,老是不明白书上说的Point Cut(切入点),Join Point(连接点), Advice(通知), Advisor(配置器),这些词倒底是什么意思,最近,看了好多遍,反复的测试,终于明白一些了.
Point Cut (切入点) = (Join Point 连接点的集合)
Advice (通知) 是要执行代理的代码
Advisor = Point Cut + Advice
其实一个类TestDaoImpl,如果想实现代理,首先要实现一个接口TestDao,然后再要有一个代理类,如日志代理 (MyLoggerProxy), MyLoggerProxy这 ...
<script>
function sendtest()
{
if(event.ctrlKey&&event.keyCode==13)
{
location.href="http://126.com";
}
}
</script>
<textarea name="comment" id="comment" cols="105" rows="10"tabindex="4&quo ...
在待机情况下按:
一、米井06井,是查手机的序列号!
二、米井0000井,查看手机的版本、出厂日期和手机型号!
三、米井92702689井,查看手机的总计时器,要买全新手机的就可以用这个,如果没有用过的就显示000000:00 !
四、 ...
import java.io.IOException;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.document.Field.Index;
import org.apache.lucene.document.Field.Store;
import org.apache.lucen ...
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
public class ArrayListSort {
public static void main(String[] args) {
ArrayList<Person> persons = new ArrayList<Person>();
Person zhangsan = new Person("zhangsan", 20, true,3. ...
总结一下java 时间戳和PHP时间戳 的转换问题:
由于精度不同,导致长度不一致,直接转换错误。
JAVA时间戳长度是13位,如:1294890876859
PHP时间戳长度是10位, 如:1294890859
主要最后三位的不同,JAVA时间戳在PHP中使用,去掉后三位,如:1294890876859-> 1294890876 结果:2011-01-13 11:54:36
echo date('Y-m-d H:i:s','1294890876');
PHP时间戳在JAVA中使用,最后加三位,用000补充,如:1294890859->1294890859000
结果:2011- ...
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans ...
//连接超时(毫秒)
client.getHttpConnectionManager().getParams().setConnectionTimeout(5000);
//读取超时(毫秒)
client.getHttpConnectionManager().getParams().setSoTimeout(5000);
超时异常处理:
try{
//client代码
f1();//到这一步表示没有超时
}catch(SocketTimeoutException e){
//这一步表示超时了
...
如果想在solr实现像百度一样相似的竟价的排名,也是可以的,在solr中实现竟价排名,主要使用QueryElevationComponent组件,
<searchComponent name="elevator" class="solr.QueryElevationComponent" >
<!-- pick a fieldType to analyze queries -->
<str name="queryFieldType">string</str>
...
在搜索时关键字自动提示功能,在Solr中主要利用TermsComponent组件实现的,
<searchComponent name="termsComponent" class="org.apache.solr.handler.component.TermsComponent"/>
<requestHandler name="/terms" class="org.apache.solr.handler.component.SearchHandler">
...
package test;
import java.security.MessageDigest;
public class Md5Digest
{
public static String md5(String string)
{
char hexDigits[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd',
'e', 'f' };
try {
byte[] bytes = string.getBytes();
MessageDig ...
1.multicores
http://localhost:8088/solr-cores/core0/select/?q=南京&version=2.2&start=0&rows=10&indent=on&shards=localhost:8088/solr-cores/core0,localhost:8088/solr-cores/core1
2.multihosts shards
http://localhost:8088/solr/select/?q=fly&version=2.2&start=0&rows=10& ...