The following program reads text from a file named tes.txt and separates plain English string from a Urdu String which is same throughout the file. It acts as a stamp after every English word.
The file looks like : (Urdu string follows English string)
سٹیمپ ختم ہو جاتی ہے
suhail
سٹیمپ ختم ہو جاتی ہے
gupta
سٹیمپ ختم ہو جاتی ہے
ghazal
سٹیمپ ختم ہو جاتی ہے
While using windows I compile the following program :
import java.io.*;
class checker {
public static void main(String args[]) {
try {
File f = new File("C:/Users/user/Desktop/tes.txt");
FileReader reader = new FileReader(f);
char buffer[] = new char[1024];
String text = "";
while( reader.read(buffer) > 0 ) {
text += buffer.toString();
}
String splits[] = text.split("سٹیمپ ختم ہو جاتی ہے");
for(int i=0;i<splits.length;i++) {
System.out.println(splits[i]);
}
} catch(Exception exc) {
exc.printStackTrace();
}
}
}
as javac -encoding UTF-8 checker.java.But when I run this program I get output as [C@19b49e6. Why is this ? Also it prints only one string from the array. I also checked the length of buffer array,it comes out to be one. Why one (there is more than one string in the file that will come into the buffer after separating it from a regex)? Where have I made a mistake ?

buffer.toString(), but rather creating a new string with the contents of the buffer - something likenew String( buffer, charset )if memory serves. There may be other problems, too - I'll try to look a little later. – lifelongcoug Oct 13 '12 at 1:24