Given the additional information
The output shall be arabic letters not
\u064A...etc. My idea was to search
the output till the \u064A... lines
and convert them to arabic. Have you
get my point? I don't know how to
solve this, I am a beginer in java.
Sorry for the confusion and thank you
for your response.
And that the input comes from http://www.google.com/transliterate/arabic?tlqt=1&langpair=en|ar&text=ana,masry&&tl_app=1 you can solve it like this:
import java.net.*;
import java.io.*;
import java.util.*;
import java.util.regex.*;
public class URLConnectionReader {
public static void main(String[] args) throws Exception {
URL googleUrl = new URL("http://www.google.com/transliterate/arabic?tlqt=1&langpair=en|ar&text=ana,masry&&tl_app=1");
URLConnection googleUrlc = googleUrl.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(googleUrlc.getInputStream()));
String inputLine;
Pattern wordRegex = Pattern.compile("\"(\\\\u[\\da-z]{4})+\"", Pattern.CASE_INSENSITIVE);
Pattern charRegex = Pattern.compile("\\\\u([\\da-z]{4})", Pattern.CASE_INSENSITIVE);
while ((inputLine = in.readLine()) != null) {
Matcher wordMatch = wordRegex.matcher(inputLine);
for (int i = 0; wordMatch.find(); i++) {
StringBuffer arabicBuffer = new StringBuffer();
Matcher charMatch = charRegex.matcher(wordMatch.group());
for (int j = 0; charMatch.find(); j++) {
arabicBuffer.appendCodePoint(Integer.valueOf(charMatch.group(1), 16));
}
if (0 < arabicBuffer.length()) {
System.out.println(arabicBuffer.toString());
}
}
}
in.close();
}
}
hws? – Nishan Mar 28 '11 at 10:02