Categories
Development Tech

Krugle – the search engine for developers

This search-engine is fantastic!

Krugle makes it easy for developers to find source code and technical information – fast!

Link to the Krugle Search Environment.
Submitt your e-mail address here to be informed when Krugle goes public!
To learn more about Krugle check this one:
What is Krugle?

Categories
General

Got resources?

In this Java Q&A Vladimir Roubtsov explains how your java-code can read for instance a properties file from within its jar-archive

Got resources? by
Vladimir Roubtsov

Categories
General

TC4/TC5 – Character Encoding

Tomcat 4 and Tomcat 5 handles character encoding of the document body and the URI in diferent ways. One of the main differences is that in TC5 HTTPServletRequest.setCharacterEncoding(…), by default, only applies to the body and not the URI. In other words, use POST instead of GET if you want .setCharacterEncoding(…) to apply to your form data.
Read this Tomcat FAQ post by Remy Maucherat to understand the whole picture.