String s = URLEncoder.encode("Há tantos burros mandando em homens de inteligência, que, às vezes, fico pensando que a burrice é uma Ciência", "UTF-8"); URL url = new URL("http://ajax.googleapis.com/ajax/services/language/detect?v=1.0&q="+s); JSONObject obj = (JSONObject) ((JSONObject)JSONValue.parse(url.getContentAsString())).get("responseData"); System.out.println(obj.get("language")); System.out.println(obj.get("confidence"));