I want to ping a target ip address and get a result. For this, I'm using windows command line in Java with runtime.exec method and process class. Im getting the response using inputStreamReader.
My default charset is windows-1254, it's Turkish. But, when I get it, the response contains Turkish characters. But Turkish characters are not displayed correctly in the console.
I want to get a numeric value from the response I get. But this value I am searching contains some Turkish character, so when I look it up, I can't find it.
The codes are below, what I need to know is how to get Turkish characters visible here:
runtime = Runtime.getRuntime();
process = runtime.exec(pingCommand);
BufferedReader bReader = new BufferedReader(
new InputStreamReader(process.getInputStream(), "UTF8"));
String inputLine;
while ((inputLine = bReader.readLine()) != null) {
pingResult += inputLine;
}
bReader.close();
process.destroy();
System.out.println(pingResult);
Thx in advance ;)
UTF8. – Brian Roach May 1 '11 at 17:19