From da14f6e746319232d0b06b67e2b3bf575cab619c Mon Sep 17 00:00:00 2001 From: Stephan Preibisch Date: Wed, 16 Oct 2024 15:44:41 -0400 Subject: [PATCH] fix URIs --- .../mvrecon/fiji/plugin/resave/ParametersResaveN5Api.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/net/preibisch/mvrecon/fiji/plugin/resave/ParametersResaveN5Api.java b/src/main/java/net/preibisch/mvrecon/fiji/plugin/resave/ParametersResaveN5Api.java index 0864de0e..8fa84297 100644 --- a/src/main/java/net/preibisch/mvrecon/fiji/plugin/resave/ParametersResaveN5Api.java +++ b/src/main/java/net/preibisch/mvrecon/fiji/plugin/resave/ParametersResaveN5Api.java @@ -25,7 +25,6 @@ import java.awt.Color; import java.awt.Font; import java.net.URI; -import java.net.URISyntaxException; import java.util.Arrays; import java.util.Collection; import java.util.HashMap; @@ -62,7 +61,8 @@ public class ParametersResaveN5Api public static URI createN5URIfromXMLURI( final URI xmlURI ) { - return URI.create( xmlURI.toString().subSequence( 0, xmlURI.toString().length() - 4 ) + ".n5" ); + final String uriString = URITools.fromURI( xmlURI ); + return URITools.toURI( uriString.subSequence( 0, uriString.length() - 4 ) + ".n5" ); } public static ParametersResaveN5Api getParamtersIJ( @@ -146,8 +146,8 @@ public static ParametersResaveN5Api getParamtersIJ( if ( askForPaths ) { gdp.addMessage( "" ); - gdp.addDirectoryField( "XML_path", xmlURI.toString(), 65 ); - gdp.addDirectoryField( "N5_path", n5URI.toString(), 65 ); + gdp.addDirectoryField( "XML_path", URITools.fromURI( xmlURI ), 65 ); + gdp.addDirectoryField( "N5_path", URITools.fromURI( n5URI ), 65 ); } gdp.showDialog();