Access parameters from custom URI scheme in Java application on OS X
问题 I've successfully added a custom URI scheme in info.plist on OS X so my Java 1.7 based application (written in Netbeans) is launched whenever the user enters "myApp:SomeParameter" in their browser: <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLName</key> <string>My App</string> <key>CFBundleURLSchemes</key> <array> <string>myApp</string> </array> </dict> </array> I have also successfully added the corresponding registry entry for the application if installed on a Windows machine.