Mercurial Hosting > junotu
changeset 75:85b392e8ba87
Using Linux-specific workarounds for URI opening if Java can't do it
author | Fox |
---|---|
date | Sat, 07 Jan 2023 01:57:44 +0100 |
parents | 1d37914defe0 |
children | 7c5c9cd41b8f |
files | src/junotu/Main.java |
diffstat | 1 files changed, 40 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/junotu/Main.java Sat Jan 07 01:12:25 2023 +0100 +++ b/src/junotu/Main.java Sat Jan 07 01:57:44 2023 +0100 @@ -1,6 +1,7 @@ package junotu; import java.lang.RuntimeException; +import java.io.IOException; import javax.swing.SwingUtilities; import java.awt.Desktop; @@ -109,11 +110,48 @@ public static void actionOpenURI( String uri ) { if( desktop == null ) { + System.err.print("Failed to open URI: No 'Desktop' instance.\n"); return; } try { - URI parsed = new URI(uri); - desktop.browse(parsed); + if( desktop.isSupported( Desktop.Action.BROWSE ) ) { + URI parsed = new URI(uri); + desktop.browse(parsed); + } else if( System.getProperty("os.name").equals("Linux") ) { + System.out.print("URI: 'Browse' action is not supported, trying Linux-specific workarounds..\n"); + /* Try some common commands. Loosely inspired by 'https://stackoverflow.com/a/18004334'. */ + final String openCommands[] = { + "xdg-open", + //"gnome-open", + //"kde-open", + }; + String command[] = new String[2]; + command[1] = uri; + for( int i = 0; i < openCommands.length; i++ ) { + System.out.print("\tRunning '"+openCommands[i]+" "+uri+"'..\n"); + command[0] = openCommands[i]; + Process process; + boolean success = false; + try { + process = Runtime.getRuntime().exec( command, null, null ); + if( process.exitValue() == 0 ) { + success = true; + } + } catch( IOException e ) { + /* I am assuming it means that the command is missing. */ + } catch( IllegalThreadStateException e ) { + /* Process is still running. Count as success. */ + success = true; + } + if( success ) { + System.out.print("URI: '"+openCommands[i]+"' seems to have worked.\n"); + return; + } + } + System.err.print("Failed to open URI: All Linux-specific workarounds seem to have failed.\n"); + } else { + System.err.print("Failed to open URI: 'Browse' action is not supported, and system-specific workaround waren't triggered. (OS name: '"+System.getProperty("os.name")+"')\n"); + } } catch( Exception e ) { throw new RuntimeException(e); }