好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

获取HTTP返回的二进制

Use the bodyBytes field on the Response object to get the response in bytes.

 import 'package:http/http.dart' as http;
import 'package:crypto/crypto.dart';

main() async {
  var url = "https://www.dartlang.org/logos/dart-logo.png";
  var response = await http.get(url);
  List<int> bytes = response.bodyBytes;
  // Do something with the bytes. For example, convert to base64.
  String base64 = CryptoUtils.bytesToBase64(bytes);
  print(base64);
} 

查看更多关于获取HTTP返回的二进制的详细内容...

  阅读:69次