我正在寻找在Dart中获得类似卷曲功能的最佳方法。例如,如何获取google.com网络内容并将其输出,作为示例。
我发现我可以通过the shell as shown here调用它,但这似乎不是理想的做法:
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,在这里找不到任何帮助我的东西。
答案 0 :(得分:9)
Dart IO库附带HttpClient
,基本上就是您要找的。但是,您应该使用http
Pub包。将其添加到依赖项文件中:
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.
});
}