超人年年有,今年特别多
OMG,人体摄影机,跟这个比起来,说实话,清明上河图不算什么
如何使用J2D将一张图片灰度化
可使用以下代码:Graphics2D g2d = source.createGraphics();ColorSpace grayCS = ColorSpace.getInstance(ColorSpace.CS_GRAY); ColorConvertOp colorConvertOp = new ColorConvertOp(grayCS, [more...]
How To Enable Anti-Aliased Globally Since JDK 5
I just read "Swing Hacks" and find it is that easy to enable anti-aliased since JDK 5. Just add a one-line code listed below at the very beginning of your whole [more...]
JFreeChart中的TimeSeries可能导致内存泄露

前段时间说到现在的项目里在用JFreeChart。昨天晚上走之前没把客户端关掉,今天中午到公司发现程序已经崩了,狂抛OutOfMemoryError。用NB的profiler跟了一下,发现是JFreeChart或者说是没有正确使用JFreeChart的TimeSeries导致的后果 TimeSeries有一个方法setMaximumItemAge:public void [more...]