----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files.  Don't make us guess your problem!!!
----------------------------------------------------------------


> out.println("<td> Baţlangýç</td>");
> 
> I realized that there is an encoding option that can be given to javac.
> 
> javac -encoding ISO8859_9 ...
> 
> So I'm now using this encoding option. If I don't use it, it makes the
> compilation of the source code with the default encoding and does not
> support my characters.

It is a bad practice to put internationalized strings directly
into your code. Use java.util.ResourceBundle for storing strings.

Martin


--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to