不使用 java.awt.Desktop API,打开默认浏览器访问指定链接的方法

版权声明:转载时请务必保留以下作者信息和链接
作者:陈维([email protected])作者的网站:http://www.chenwei.mobi

在 Java SE 6 中提供了一套桌面 API 实现与本机桌面 API 的无缝集成,这些桌面 API 使用你的主机操作系统的文件关联以启动与特定文件类型相关联的应用程序。但是因为目前许多客户端并没有安装、部署 JRE 6.0 之后的 Java 运行环境,那么在旧的运行环境中怎样才能调用默认浏览器打开指定的链接呢?

这就是本文的主要内容。

我们把目标平台暂定为 Windows XP 和 Mac OS X。

Windows 平台

可以在控制台中使用 rundll32.exe 调用 url.dll 这个动态连接库打开浏览器访问指定的链接。那么,我们在 Java 程序中就可以使用 Runtime.exec 方法来调用这个命令。(关于 Runtime.exec 可以参考我 blog 中的另一篇文章:Java 程序调用 exe)

String cmd  =   " rundll32 url.dll,FileProtocolHandler http://www.apple.com " ;
Runtime.getRuntime().exec(cmd);

当然,以上程序执行前,首先得判断当前的操作系统平台是否是 Windows。

     private   static   final  String WIN_ID  =   " Windows " ;
    
    
public   static   boolean  isWindowsPlatform()  {
        String os 
= System.getProperty("os.name");
        
        
if ( os != null && os.startsWith(WIN_ID))
            
return true;
        
else
            
return false;
    }


Mac OS X

在 Mac 里稍微有些复杂。同样,我们需要判断当前操作系统平台是否是 Mac OS X。

     private   static   final  String MAC_ID  =   " Mac " ;

    
public   static   boolean  isMacPlatform()  {
        String os 
= System.getProperty("os.name");
        
        
if ( os != null && os.startsWith(MAC_ID))
            
return true;
        
else
            
return false;
    }

Apple 公司实现的 JDK 里有这么一个类:com.apple.mrj.MRJFileUtils,在 Mac 下可以使用它提供的方法  openURL 打开浏览器访问链接。为了使我们的程序兼容标准 Java  运行环境,所以使用反射技术来使用这个方法。

     public   static   void  openMacURL(String url)  {
        
try{
            Class MRJFileUtils 
= Class.forName("com.apple.mrj.MRJFileUtils");
            Method openMethod 
= MRJFileUtils.getDeclaredMethod("openURL"new Class[] {String.class});
            openMethod.invoke(MRJFileUtils,
new Object[]{formatString(url)});
        }
 catch(Exception e) {
            e.printStackTrace();
        }

    }

formatString( String ) 顾名思义是用来重新格式化目标 URL。

     public   static  String formatString(String str)  {
        String retString
="";
        String protocol 
= "";
        String host 
= "";
        String path 
= "";
        
        
try {
            java.net.URL url 
= new java.net.URL(str);
            protocol 
= url.getProtocol();
            host 
= url.getHost();
            path 
= url.getPath();
        }
 catch (MalformedURLException ex) {
            path 
= str;
        }

        
        
for(int i = 0; i < path.length(); i++{
            
if(path.charAt(i) == ' '{
                retString 
+= "%20";
            }
 else if(path.charAt(i) == '.'{
                retString 
+= "%2E";
            }
 else {
                retString 
+= path.substring(i, i + 1);
            }

        }

        
        
if (!protocol.equals("")) {
            retString 
= protocol + "://" + host + retString;
        }
 else {
            retString 
= host + retString;
        }

        
        
return retString ;
    }


Mac 下默认调用的浏览器是 Safari

不使用 java.awt.Desktop API,打开默认浏览器访问指定链接的方法_第1张图片

 
作者的网站:http://www.chenwei.mobi 

你可能感兴趣的:(Java,Language)