I was getting this exception during build while running ant. Googling didn't help much and I was flummoxed because the same code was running fine till now.
My code reads a text file and does some operations on the basis of values read. It was only when I saw the text files I understood the error. I had copied the text in wordpad and saved it as .txt file. Wordpad had put lot of formatting information before and after the content. Also there was "\par" after every line, which was giving this error.
So moral of the story: if you get this exception check your properties file (or any other file that your code might be reading.)
My code reads a text file and does some operations on the basis of values read. It was only when I saw the text files I understood the error. I had copied the text in wordpad and saved it as .txt file. Wordpad had put lot of formatting information before and after the content. Also there was "\par" after every line, which was giving this error.
So moral of the story: if you get this exception check your properties file (or any other file that your code might be reading.)
Comments
Thanks a lot!
It was a "\u" in a property value...
Thanks!
i'm Getting the same while loading the file...
here is the code:
FileInputStream MyInputStream = new FileInputStream(new File("Defaultprop.pref"));
myProps.load(MyInputStream);
please Help Me Out With This..
Thanks a Lot
Even I'm gettin same error while loadin the file... here is the code:
FileInputStream MyInputStream = new FileInputStream(new File("Defaultprop.pref"));
myProps.load( new FileInputStream("Defaultprop.pref"));
Please Help out to get rid of this ;0