Код
public class getjson {
String Query;
JSONObject jo = null;
public getjson(String url){
Query = url;
getJson();
}
private void getJson() {
try {
// Create a new HTTP Client
DefaultHttpClient defaultClient = new DefaultHttpClient();
// Setup the get request
HttpGet httpGetRequest = new HttpGet(Query);
// Execute the request in the client
HttpResponse httpResponse = defaultClient.execute(httpGetRequest);
// Grab the response
BufferedReader reader = new BufferedReader(new InputStreamReader(httpResponse.getEntity().getContent(), "UTF-8"));
String json = reader.readLine();
// Instantiate a JSON object from the request response
jo = new JSONObject(json);
} catch (Exception e) {
// In your production code handle any errors and catch the individual exceptions
e.printStackTrace();
}
}
public String getJo(){
return jo.toString();
}
}
Приложение вылетает при исполнении кода.
Айфон мало держит заряд, разбираемся с проблемой вместе с AppLab
Перевод документов на английский язык: Важность и ключевые аспекты
Кто-нибудь может подсказать, как реализовать подобный TabLayout?
Кто-нибудь знает, можно ли сделать скриншот с помощью Selenium WebDriver? Пытался реализовать так: