JavaEE
totogogo
@CityU of HK
展开
-
Error connecting to server localhost on port 1527 with message Connection refused
跟着Netbean tutorial (http://netbeans.org/kb/docs/javaee/javaee-gettingstarted.html)写一个JavaEE 6 App,在执行时出错: Error connecting to server localhost on port 1527 with message Connection refused 究其原创 2010-02-11 17:09:00 · 3686 阅读 · 0 评论 -
Getting Started with Java EE 6 Applications
Text:http://netbeans.org/kb/docs/javaee/javaee-gettingstarted.html Video:http://netbeans.org/kb/docs/javaee/javaee-gettingstarted-screencast.html原创 2010-02-23 11:59:00 · 567 阅读 · 0 评论 -
apache + tomcat load balance and cluster
load balancer环境应该是1个apache server, 多个tomcat server (tomcat1, tomcat2)load balance是用apache server进行分流,把请求按照权重以及当时负荷分给tomcat1,tomcat2tomcat cluster是指在load balance时各个tomcat之间如何共享资源(特别是共享session)原创 2011-10-25 00:46:52 · 1293 阅读 · 0 评论 -
如何把utf8的html text变成plain text
access following linkhttp://maps.google.com/maps/api/directions/json?origin=shatin,hk&destination=mongkok,hk&sensor=false你会看到在"html_instruction" tag里有类似下列的字样走\u003cb\u003e沙田坳道\u003c/b\u003e原创 2012-01-06 02:56:02 · 2009 阅读 · 0 评论 -
eclipse error "'.JETEmitters' is missing required library"
Solution: http://www.devrecipes.com/2009/08/09/eclipse-error-project-jetemitters-is-missing-required-library/转载 2012-02-20 17:46:42 · 1385 阅读 · 0 评论 -
Java操作Microsoft office
如果是java操作excel,那么选用Apache POI (http://poi.apache.org/)为什么不选用java excel api (http://jexcelapi.sourceforge.net/)? 因为它不支持excel 2007 or later format (xlsx)poi基本操作的参考文档:http://blog.yslifes.com/ar原创 2012-04-12 10:51:14 · 6506 阅读 · 2 评论 -
apahce poi excel lib
对于合并的cell,必须所有cell都设置边框,否则边框描绘会出错!即只能画出部分边框参看 http://poi.apache.org/faq.html#faq-N100E3poi examplehttp://poi.apache.org/spreadsheet/examples.html原创 2012-06-06 16:21:40 · 669 阅读 · 0 评论