2012-12-23 73 views
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,但沒有找到任何事情來幫助我在這裏。

回答

8

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. 
    }); 
}