2016-08-03 17 views
2

私のWindows上のブラウザでURLを開くには、次を使用します。Macでコマンドを使用してURLを開く方法

Command="C:\\Program Files\\Internet Explorer\\IEXPLORE "+Url; 

Process Child=Runtime.getRuntime().exec(Command); 

私はMac上で同じことを達成するために何をすべきか?

答えて

3

Try open

String Command="open "+"http://google.ca"; 
Process Child=Runtime.getRuntime().exec(Command); 

が、これは

を役に立てば幸い
関連する問題