I researched on google and I found this article, but my codes still being saved as ansi. Notepad++ has a feature to change/convert the code charset, does someone know if there exists any option in Netbeans?

nebeans.conf:

netbeans_default_options="-J-Dorg.glassfish.v3.installRoot=\"E:\Programs\sges-v3-prelude\" -J-Dcom.sun.aas.installRoot=\"E:\Programs\AppServer\" -J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Xverify:none -J-Dapple.laf.useScreenMenuBar=true -J-Dsun.java2d.noddraw=true -J-Duser.language=en -J-Duser.region=US -J-Dfile.encoding=UTF-8"

project.properties:


include.path=${php.global.include.path}
source.encoding=UTF-8
src.dir=.
tags.asp=false
tags.short=true
web.root=.

Thanks in advance!

link|improve this question

67% accept rate
feedback

2 Answers

While Boro is correct, in a sense so is Krishna. UTF8 is designed to be backwards compatible with ANSI. So if you save a file in UTF8, and use only characters that can be found in ANSI, you essentially have an ANSI file. UTF8 extends ANSI encoding to give a way to encode other characters using more than one byte if necessary.

link|improve this answer
feedback

Just FYI- UTF8 characters map on to US-ANSI. Meaning: 'A'(ASCII value 65) in utf8 is the same. So you would not know the difference if your program is written in ANSI or UTF-8.

Edit - Pardon my English. US-ANSI characters map on to UTF8 character set. What I mean is: US ANSI ASCII from values 0 to 127 is same as that of 0 to 127 of UTF8 and vice-verse is not true.

link|improve this answer
There are thousands of special characters that don't map to ANSI. – Boro Sep 24 '09 at 14:34
Whoa, whoa, whoa, whoa, whoa, UTF-8 does not map 1:1 to ASCII. UTF-8 has around 100,000 characters that do not map to ASCII. – Hello71 Mar 5 '11 at 1:21
Yes! completely agreed. I should be careful with English. Thanks for pointing out. – Krishna May 4 '11 at 6:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.