RE: RE: RE: Usage of i18n in JSTL

2002-05-23 Thread Michale Zhou
- From: Vernon Wu [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 11:14 PM To: Tag Libraries Users List; Michale Zhou Subject: Re: RE: RE: Usage of i18n in JSTL Thanks very much, Michael. Your help is far over what I expect. Using the converter program is a better than looking up the near

Re: RE: RE: Usage of i18n in JSTL

2002-05-23 Thread Vernon Wu
>%> > ><%! > private static char toHex(int nibble) { >return hexDigit[(nibble & 0xF)]; > } > private static char[] hexDigit = { >'0','1','2','3','4','5','6','7','8','9',&#

RE: RE: Usage of i18n in JSTL

2002-05-23 Thread Michale Zhou
;\\t"); break; case '\n': buf.append("\\n"); break; case '\r': buf.append("\\r"); break; default: //if (ch >= ' ' && ch <= 127) { //buf.append(ch); //} //else {

Re: RE: Usage of i18n in JSTL

2002-05-23 Thread Vernon Wu
Hi, Michael, Thanks for sharing information. If my understanding is correct, the solution you mentioned is for changing locale during a session. I have tried to use your code, but can't test it out since one more class is needed to get it running. I use the lastest JSTL build as Jan suggests