Java
georgeguwenzhong
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Generate special format numbers
DecimalFormat df = new DecimalFormat("999000"); df.format(10); will output "999010"原创 2012-04-27 00:06:07 · 175 阅读 · 0 评论 -
Java String Charset Encoding
Charset Charset is a named mapping between sequences of sixteen-bit Unicode code units and sequences of bytes. 1 byte = 8 bits, byte represent the int value from 0x00 through 0xFF. In ASC-II, we...2012-02-09 00:28:48 · 251 阅读 · 0 评论 -
Java Exception Design
Talk something used to happen in projects. Java basic Exception Struts global exception handler design.2012-02-18 05:36:26 · 150 阅读 · 0 评论 -
Wheels: Common utilities reuse and design
Search-->Copy-->Small Modification-->Delivery with product...-->Search again-->Copy and modify again-->...Or Rewrite-->Test-->delivery with product...Rewrite-->Test--&g...2012-02-18 05:57:05 · 135 阅读 · 0 评论 -
javax.naming.CommunicationException: remote side declared peer gone on this JVM.
javax.naming.ServiceUnavailableException [Root exception is java.net.UnknownHostException: XXXXX001] javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://X.X.X.X:...2012-07-11 09:44:15 · 868 阅读 · 0 评论 -
Memory Leak analyze
Shallow Heap Size Shallow size is the amount of memory allocated to store the object itself, not taking into account the referenced objects. Retained Heap Size Retained size of an object is its s...原创 2012-03-12 06:21:05 · 123 阅读 · 0 评论 -
Scheduled ThreadPool Executor suppressed or stopped after error happen
ScheduledThreadPoolExecutor Execution periodic Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given period; tha...2012-03-20 16:54:19 · 158 阅读 · 0 评论 -
java.util.ConcurrentModificationException
Where ConcurrentModificationException raised Case 1: update value Entries during traverse Map in same Thread java.util.ConcurrentModificationException will be raised in following java code: Ma...2012-03-20 18:10:38 · 207 阅读 · 0 评论
分享