I am getting a response from a URL and I am printing on the console.
The response is Šèô; fREïp\ô.
Can anyone tell me how to read this response?
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
response = response + line;
}
This is how I am reading a response
and the output of System.out.println(conn.getContentType());
is application/x-protobuffer