zoukankan      html  css  js  c++  java
  • 跨平台打开一个URL的方法

    unit u_urlOpen;
    
    interface
    
    uses
      System.SysUtils, System.Types, System.UITypes, System.Classes,
      System.Variants,
    {$IF Defined(IOS)}
      macapi.helpers, iOSapi.Foundation, FMX.helpers.iOS;
    {$ELSEIF Defined(ANDROID)}
    Androidapi.JNI.GraphicsContentViewText,
      Androidapi.JNI.Net,
       Androidapi.JNI.App,
      Androidapi.helpers;
    {$ELSEIF Defined(MACOS)}
    Posix.Stdlib;
    {$ELSEIF Defined(MSWINDOWS)}
    Winapi.ShellAPI, Winapi.Windows;
    {$ENDIF}
    
    type
      tUrlOpen = class
        class procedure Open(URL: string);
      end;
    
    implementation
    
    class procedure tUrlOpen.Open(URL: string);
    {$IF Defined(ANDROID)}
    var
      Intent: JIntent;
    {$ENDIF}
    begin
    {$IF Defined(ANDROID)}
      Intent := TJIntent.Create;
      Intent.setAction(TJIntent.JavaClass.ACTION_VIEW);
      Intent.setData(StrToJURI(URL));
      tandroidhelper.Activity.startActivity(Intent);
      // SharedActivity.startActivity(Intent);
    {$ELSEIF Defined(MSWINDOWS)}
      ShellExecute(0, 'OPEN', PWideChar(URL), nil, nil, SW_SHOWNORMAL);
    {$ELSEIF Defined(IOS)}
      SharedApplication.OpenURL(StrToNSUrl(URL));
    {$ELSEIF Defined(MACOS)}
      _system(PAnsiChar('open ' + AnsiString(URL)));
    {$ENDIF}
    end;
    
    end.
  • 相关阅读:
    python之jupyter
    python处理图片
    python之图片指纹(唯一性的)
    python之操作elasticsearch7.6.0
    elasticsearch之索引
    elasticsearch
    Nginx 出现 403 Forbidden解决方案
    centos 防火墙命令
    centos nginx常用的命令
    搭建centos nginx环境
  • 原文地址:https://www.cnblogs.com/kinglandsoft/p/12071793.html
Copyright © 2011-2022 走看看