or you can save it as "Unicode" and javac -encoding Unicode
this way you can still use notepad.
Liaqat Ali 写道:
李晓峰 wrote:
"javac" has an option "-encoding", which tells the compiler the
encoding the input source file is using, this will probably solve the
problem.
or you can try the unicode escape: \uxxxx, then you can save it in
ANSI, had for human to read though.
or use an IDE, eclipse is a good choice, you can set the source file
encoding, and it will take care of the compiler for you.
regards.
Hi, Doro Cohen
Thanks for your reply, but I am facing a small problem over here. As
I am using notepad for coding, then in which format the file should
be saved.
public static final String[] URDU_STOP_WORDS = { "کے" ,"کی" ,"سے"
,"کا" ,"کو" ,"ہے" };
Analyzer analyzer = new StandardAnalyzer(URDU_STOP_WORDS);
If I save it in ANSI format it will lose the contents, I tried
Unicode but it does not work and I also tried UTF-8, but it also
generate two errors of identifying two illegal characters. What
should be the solution. Kindly guide in this.
Thanks ..
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Hi,
Thanks alot for your suggestion.
Using javac -encoding UTF-8 still raises the following error.
urduIndexer.java : illegal character: \65279
?
^
1 error
What I am doing wrong?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]