6
我正在尋找在飛鏢中獲得類似捲曲功能的最佳方式。例如,如何獲取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,但沒有找到任何事情來幫助我在這裏。