- 浏览: 307301 次
- 性别:
- 来自: 杭州
最新评论
-
wst0350:
点赞,有空深入讲解下原理
Servlet、Filter 和 Listener 调用顺序、生命周期的实验分析 -
tuspark:
Eclipse中高亮设置内容还有很多细节选项可以设置的,可以看 ...
Eclipse 设置匹配代码高亮 -
xichao1929:
这个时候,怎么启动发布的项目呢?????
JBoss设置为Windows服务 -
xiaozi7:
非常感谢,楼主的英语水平不一般那
WebSphere MQ Version 7 发布订阅相关配置 -
qtlkw:
slave没玩过
Hudson: java.lang.OutOfMemoryError: Java heap space error
文章列表
转载: http://blog.csdn.net/zhangjunfangkaixin/archive/2009/03/04/3957241.aspx
1、软件下载
JXplorer下载地址(Windows):
http://prdownloads.sourceforge.net/jxplorer/JXv3.2_install_windows.exe?download
下载后,双击jxplorer.exe安装。需要安装JDK1.4.0或更高版本。
JXplorer下载地址(Linux):
http://prdownloads.sourceforge.net/jxplorer/JXv3 ...
转载: http://kevin.vanzonneveld.net/techblog/article/schedule_tasks_on_linux_using_crontab/
If you've got a website that's heavy on your web server, you might want to run some processes like generating thumbnails or enriching data in the background. This way it can not interfere with the user interfac ...
转载: http://blog.csdn.net/gaotianyaoyue/archive/2009/09/22/4580245.aspx
1、native2ascii简介:
native2ascii是sun java sdk提供的一个工具。用来将别的文本类文件(比如*.txt,*.ini,*.properties,*.java等等)编码转为Unicode编码。为什么要进行转码,原因在于程序的国际化。Unicode编码的定义:Unicode(统一码、万国码、单一码)是一种在计算机上使用的字符编码。它为每种语言中的每个字符设定了统一并且唯一的二进制编码,以满足跨语言、跨平台进行文本转换、 ...
转载: http://www-01.ibm.com/support/docview.wss?uid=swg21168924
Question
Frequently Asked Questions concerning connection pools and sessions pools in IBM® WebSphere® Application Server.
Answer
Q: WebSphere MQ Queue Connection Factories in WebSphere Application Server releases contain both a connectio ...
I have code where I schedule task using java.util.timer. I was looking around and saw ExecutorService can do the same. So this question here, have you used Timer and ExectuorService to schedule tasks , what is the benefit of one using over another.
Also wanted to check if anyone has uses the Timer c ...
Many people have probably used Timer for some quick one-off timer tasks where using a whole library like Quartz don’t make sense.
One thing to be aware of is that Timer’s constructor will start and spawn a thread. This is a recipe for trouble if you use Timer too casually.
Two good rules of thumb f ...
转载: http://blog.csdn.net/wgw335363240/archive/2010/08/31/5854402.aspx
Runtime.getRuntime().addShutdownHook(shutdownHook);
这个方法的含义说明:
这个方法的意思就是在jvm中增加一个关闭的钩子,当jvm关闭的时候,会执行系统中已经设置的所有通过方法addShutdownHook添加的钩子,当系统执行完这些钩子后,jvm才会关闭。所以这些钩子可以在jvm关闭的时候进行内存清理、对象销毁等操作。
调用方:
Runtime runtime = Runtime.getRu ...
得到过去的时间:
example one:
private Date getDateTime(){
Calendar calendar = Calendar.getInstance();
calendar.set(2011, Calendar.DECEMBER, 1, 23, 0, 0);
return calendar.getTime();
}
example two:
String.valueOf(new Date().getTime() - 24 * 60 * 60 * 1000)
转换日期成String:
private static SimpleDateFormat ...
CASE 可能是 SQL 中被误用最多的关键字之一。虽然你可能以前用过这个关键字来创建字段,但是它还具有更多用法。例如,你可以在 WHERE 子句中使用 CASE。
首先让我们看一下 CASE 的语法。在一般的 SELECT 中,其语法如下:
SELECT <myColumnSpec> =
CASE
WHEN <A> THEN <somethingA>
WHEN <B> THEN <somethingB>
ELSE <somethingE>
END
在上面的代码中需要用具体的参数代替尖括号中的内容。
exam ...
转载: http://blogold.chinaunix.net/u/25102/showart_295868.html
public class SimpleDateFormat extends DateFormat
SimpleDateFormat 是一个以国别敏感的方式格式化和分析数据的具体类。 它允许格式化 (date -> text)、语法分析 (text -> date)和标准化。
SimpleDateF ...
1. 查看及更改数据库head的配置
请注意,在大多数情况下,更改了数据的配置后,只有在所有的连接全部断掉后才会生效。
查看数据库head的配制
db2 get db cfg for head
更改数据库head的某个设置的值
1.1 改排序堆的大小
db2 update db cfg for head using SORTHEAP 2048
将排序堆的大小改为2048个页面,查询比较多的应用最好将该值设置比较大一些。
1.2 改事物日志的大小
db2 update db cfg for head using logfilsiz 40000
该项内容的大小要和数据库的事物处理相适应,如果事物 ...
引自: "http://www.oschina.net/news/16950/the-greatest-developer-fallacy-or-the-wisest-words"
"I will learn it when I need it"! I've heard that phrase a lot over the years; it seems like a highly pragmatic attitude to foster when you're in an industry as fast-paced as software devel ...
参照: http://blog.csdn.net/hudon/archive/2007/07/18/1696727.aspx
线性表,链表,哈希表是常用的数据结构,在进行Java开发时,JDK已经为我们提供了一系列相应的类来实现基本的数据结构。这些类均在java.util包中。本文试图通过简单的描述,向读者阐述各个类的作用以及如何正确使用这些类。
Collection
├List
│├LinkedList
│├ArrayList
│└Vector
│ └Stack
└Set
Map
├Hashtable
├HashMap
└WeakHashMap
ConcurrentMap extends ...
用了这么久的jsp和java,还不是很清楚jsp页面的注释。^-^
1. 第一种用显式注释: <!-- comment -->
for example:
<!--<geh:checkLogon/>-->
此种注释还是会让JVM编译、解释和执行。
2. 第二种用隐式注释: <%-- comment --%>
for example:
<%--<geh:checkLogon/>--%>
此种注释JVM不会执行。
区别:
1. <%--此注释是jsp本身采用的一种注释 --%>,<!-- 此注释不但可以用于 ...
参照:http://azrael6619.iteye.com/blog/425630
一、同步方法
public synchronized void A(){
//...
}
锁定的是调用这个同步方法的对象
测试:
a、不使用这个关键字修饰方法,两个线程调用同一个对象的这个方法。
目标类:
public class BusinessLogic{ ...