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

Firefox 1.5 is released

Yep. It’s here. Don’t really remember what’s new either, just got to have it. 😉 Get it here.

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.