Last active
October 20, 2020 06:59
-
-
Save Headmast/7b9c77fd087c47041ef62b523e50c2d8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:http/http.dart' as http; | |
import 'dart:io'; | |
void main(List<String> arguments) async { | |
try { | |
var resp = await fetchJson(url:'https://jsonplaceholder.typicode.com/posts'); | |
fetchJson(url:'https://i.pinimg.com/564x/e6/57/1a/e6571a6c62fb2615c741a8fcf32aef49.jpg'); | |
print('Print json \n${resp.body}'); | |
} catch (e) { | |
print("Load error: $e"); | |
} | |
// How catch Unhandled exception: in Future? | |
fetchJson(url:'https://jsonplaceholder.typicode.com/postss') | |
.catchError((onError){ | |
print("Load error: $onError"); | |
}); | |
} | |
Future<http.Response> fetchJson({String url}) async { | |
var startTime = DateTime.now(); | |
print('$url \nStart time $startTime'); | |
var resp = await http.get(url); | |
if (resp.statusCode != 200) { | |
throw Exception('Http status code ${resp.statusCode}'); | |
} | |
var endTime = DateTime.now(); | |
Duration difference = endTime.difference(startTime); | |
print('$url \nTime load $difference'); | |
print('$url \nFile size in bytes ${resp.contentLength}'); | |
return resp; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Наверное я недостаточно описал тз для домашки. После проверки допишу задание.
1)По загрузке текста ок. Хотя я имел ввиду сделать загрузку текста через извлечение массива байтов из запроса.
Можете ознакомиться с решением в этом треде
https://stackoverflow.com/questions/19662085/read-data-content-from-an-url-in-a-main-with-dart
2) Не увидел загрузки изображения. Вот пример того как это можно сделать(что-то не нашел в сети, но он там есть!)