Home > Mobile >  How to force JAVA app to open the page in specific browser
How to force JAVA app to open the page in specific browser

Time:10-26

When I add microsoft-edge prefix to the URL(microsoft-edge:https://google.com) it opens the page in edge regardless what browser i am using to run the app. Is there an equivalent prefix for chrome and Firefox ?

Thank you in advance

CodePudding user response:

If you are using Java and you want to run a certain browser with a certain link the only solution i can possibly think is using CMD

Runtime.getRuntime().exec(new String[]{"cmd", "/c","start chrome your_ link "});
  • Related