- 浏览: 215201 次
- 性别:
- 来自: 深圳
最新评论
-
zjut_ww:
非常感谢分享。。但是我在使用过程中遇到一点小问题。就是如果用来 ...
java正则表达式找出不包含特定字符串 -
mohican52:
在吗,大哥
struts2首页forward跳转后执行action -
hz2005_2009:
Y轴中文问题怎么解决?
FusionChartsFree调用json数据的简单例子 -
xixian:
chenhao_yssy 写道把num换称9.985和9.99 ...
Doublel保留两位小数 -
chenhao_yssy:
把num换称9.985和9.995试试。
Doublel保留两位小数
文章列表
CREATE PROCEDURE `proc_name`(in types integer)
begin
DECLARE ctime int(11);
DECLARE goal int(11);
set ctime =1;
set @sqltext='insert into test(title,direct,clicktime,mtype,goal) values';
loop1: WHILE ctime<=15 DO
set goal=1;
loop2: WHILE goal<=100 DO
if ctime=15 and goal=100 then
...
用ext form 提交数据的访问默认超时为30秒
如果访问处理时间过长,及时后台处理没出错,ext也会报访问出错
可以在提交参数中添加
timeout:90,//超时时间
java正则表达式找出特定格式语句的关键字
- 博客分类:
- java
中文问句语句分析需要提取问句中的关键字
例子1
这个是什么牌子的?
这个是啥价格?
我们需要提取上面语句的"牌子"和"价格"这两个关键字
用正则实现
String reg="((?<=(什么|啥))[^的?\\?]+)";
Pattern pattern =Pattern.compile(reg);
Matcher m=pattern.matcher("这个是什么牌子的?");
while(m.find()){
System.out.println(m.group());//输出“牌子”
...
java正则表达式找出不包含特定字符串
- 博客分类:
- java
参考资料
http://www.imkevinyang.com/2009/08/%E4%BD%BF%E7%94%A8%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F%E6%89%BE%E5%87%BA%E4%B8%8D%E5%8C%85%E5%90%AB%E7%89%B9%E5%AE%9A%E5%AD%97%E7%AC%A6%E4%B8%B2%E7%9A%84%E6%9D%A1%E7%9B%AE.html
正则基本知识
http://xixian.iteye.com/blog/721147
正则表达式中有前瞻(Lookahead)和后顾(Lookbe ...
tomcat6突然启动不了,看到启动时候有下面提示
The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_04\jre\bin;C:\Program Files\Tomcat 6.0\bin
在http://tomcat.heanet.ie/native/1.1.10/binaries/win32/tc ...
tomcat本来正常,突然启动报错如下
严重: IOException while loading persisted sessions: java.io.EOFException
将work下面所有的ser文件删除即可以解决。
资料参考于
http://hxraid.iteye.com/blog/483115?page=2#comments
一些资料文件打包后,用常规的绝对目录读取文件会找不到该资源文件
但可以通过Class类的getResourceAsStream()方法来获取
//返回读取指定资源的输入流
InputStream is=this.getClass().getResourceAsStream("res.txt");// res.txt和当前类同一目录
BufferedReader br=new BufferedRead ...
今天用myEclipse打jar包,并且设置了utf-8
但是导入到其他项目后乱码,同事上查看是正常
确定是本机myeclipse问题
上网查了下设置即可
window->Preferences-> General -> Workspace
修改Text file encoding 修改成utf-8
问题解决了
获取Select :
获取select 选中的 text :
$("#ddlRegType").find("option:selected").text();
获取select选中的 value:
$("#ddlRegType ").val();
获取select选中的索引:
$("#ddlRegType ").get(0).selectedIndex;
设置select:
设置select 选中的索引:
$("#ddlRegType ").get(0).s ...
转载http://www.codinglabs.org/html/consistent-hashing.html
摘要
本文将会从实际应用场景出发,介绍一致性哈希算法(Consistent Hashing)及其在分布式系统中的应用。首先本文会描述一个在日常开发中经常会遇到的问题场景,借此介绍一致性哈希算法以及这个算法如何解决此问题;接下来会对这个算法进行相对详细的描述,并讨论一些如虚拟节点等与此算法应用相关的话题。
分布式缓存问题
假设我们有一个网站,最近发现随着流量增加,服务器压力越来越大,之前直接读写数据库的方式不太给力了,于是我们想引入Memcached作为缓存机制。现在我们一共有 ...
import java.util.Date;
import java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.Session;
import javax.mail.Transp ...
转载于
http://www.yongfa365.com/Item/UML-Association-Dependency-Aggregation-Composition-Realization-Generalization.html
图示说明:
关联:连接模型元素及链接实例,用一条实线来表示;
依赖:表示一个元素以某种方式依赖于另一个元素,用一条虚线 ...
修改目录:
Window --> Java --> Code Style --> Code Templates --> Comments --> types --> Edit
类注释
/**
*
* 项目名称:${project_name}
* 类名称:${type_name}
* 类描述:
* 创建人:${user}
* 创建时间:${date} ${time}
* 修改人:${user}
* 修改时间:${date} ${time}
* 修改备注:
* @version ...
java获取properties配置文件例子
- 博客分类:
- java
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Properties;
public class Test {
public static void main(String[] arg){
Properties pro=getProperties();
String yourParameter = pro.getProperty("yourParamete ...
/**
* 获取网页信息
* @param remoteFile 网址url
* @return
* @throws IOException
*/
public String getRemoteHtml(String remoteFile) throws IOException{
URL url = null;
HttpURLConnection urlc = null;
String sCurrentLine="";
java.io.BufferedReader ...