Path: csiph.com!usenet.pasdenom.info!gegeweb.org!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail From: markspace <-@.> Newsgroups: comp.lang.java.programmer Subject: Re: Unicode escapes and String literals? Date: Thu, 13 Dec 2012 15:32:11 -0800 Organization: A noiseless patient Spider Lines: 17 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Injection-Date: Thu, 13 Dec 2012 23:32:14 +0000 (UTC) Injection-Info: mx04.eternal-september.org; posting-host="61282af8d6595e8d991edb5ac03d6e00"; logging-data="20811"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/7s9C7kmuPBzAtOYeUPC7Gxa9ExEFzRI4=" User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Thunderbird/17.0 In-Reply-To: Cancel-Lock: sha1:ZEO6Y940+uFz27B14rtgn28upwE= Xref: csiph.com comp.lang.java.programmer:20308 On 12/13/2012 2:55 PM, Knute Johnson wrote: > I did look at the apache commons link you sent and that would probably > do it but if the compiler can translate them it must have a method > already. Maybe it's not public but that is what I was asking. The compilers internal methods aren't part of the public API. The closest thing I'm aware of is Properties#load(), which does convert \u and some other escape sequences in a properties file. However their method do do that is private. I think if it's in the Apache utils then it's fair to say there's no Java API equivalent. Otherwise, why make an Apache utils method?