Sample code for 30+ languages & platforms
Dart

HTTP Download from URL with IP Address and Port

See more HTTP Examples

Downloads a file from a URL using an IP address and port.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // This example assumes the Chilkat API to have been previously unlocked.
  // See Global Unlock Sample for sample code.

  final http = CkHttp();

  http.setRequestHeader('Host', 'chilkatsoft.com');

  final localFilePath = '/temp/hamlet.zip';
  try {
    http.download('http://107.180.46.206:80/hamlet.zip', localFilePath);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  print('OK!');
}