6

我正在寻找在 Dart 中获得类似 curl 的功能的最佳方法。例如,如何获取 google.com 网页内容并将其输出,例如。

我发现我可以通过shell 调用它,如此处所示,但这似乎不是理想的方法:

import 'dart:io';

main() {
  var f = new File(new Options().executable);
  Process.start('curl', 
                ['--dump-header', '/tmp/temp_dir1_M8KQFW/curl-headers', '--cacert',
                 '/Users/ager/dart/dart/third_party/curl/ca-certificates.crt', '--request', 
                 'POST', '--data-binary', '@-', '--header', 'accept: ', '--header', 'user-agent: ' ,
                 '--header', 'authorization: Bearer access token', '--header', 
                 'content-type: multipart/form-data', '--header',
                 'content-transfer-encoding: binary', '--header',
                 'content-length: ${f.lengthSync()}', 'http://localhost:9000/upload']).then((p) {
    f.openInputStream().pipe(p.stdin);
    p.stdout.pipe(stdout);
    p.stderr.pipe(stderr);
    p.onExit = (e) => print(e);
  });
}

我还查看了 API,在这里找不到任何可以帮助我的东西。

4

1 回答 1

10

Dart IO 库附带了一个HttpClient基本上是您正在寻找的东西。但是,您可能应该改用httpPub 包。将其添加到您的依赖项文件中:

dependencies:
  http: any

运行pub install,然后:

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

main() {
  http.read('http://google.com').then((contents) {
    print(contents); // Here we output the contents of google.com.
  });
}
于 2012-12-23T17:36:59.807 回答