我正在使用directorychooser在DirectoryChooser()方法中选择图像目录,但在尝试选择目录时,我收到了非法参数异常/无效URL异常。
ImageView imgView = new ImageView( strImageList[ count ].getPath() );
这是^对应于stacktrace
中引用的第348行的代码makeImageViewArr(folder.getAbsolutePath());
这是^对应于stacktrace
中引用的第104行的代码Exception in thread "JavaFX Application Thread" java.lang.IllegalArgumentException: Invalid URL: Invalid URL or resource not found
at javafx.scene.image.Image.validateUrl(Image.java:1118)
at javafx.scene.image.Image.<init>(Image.java:620)
at javafx.scene.image.ImageView.<init>(ImageView.java:166)
at ICGPixelReader.makeImageViewArr(ICGPixelReader.java:348)
at ICGPixelReader.DirectoryChooser(ICGPixelReader.java:104)
at ICGPixelReader.lambda$addElements1$0(ICGPixelReader.java:205)
at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:86)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191)
at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:59)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74)
at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:49)
at javafx.event.Event.fireEvent(Event.java:198)
at javafx.scene.Node.fireEvent(Node.java:8411)
at javafx.scene.control.Button.fire(Button.java:185)
at com.sun.javafx.scene.control.behavior.ButtonBehavior.mouseReleased(ButtonBehavior.java:182)
at com.sun.javafx.scene.control.skin.BehaviorSkinBase$1.handle(BehaviorSkinBase.java:96)
at com.sun.javafx.scene.control.skin.BehaviorSkinBase$1.handle(BehaviorSkinBase.java:89)
at com.sun.javafx.event.CompositeEventHandler$NormalEventHandlerRecord.handleBubblingEvent(CompositeEventHandler.java:218)
at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:80)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191)
at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:59)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74)
at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:54)
at javafx.event.Event.fireEvent(Event.java:198)
at javafx.scene.Scene$MouseHandler.process(Scene.java:3757)
at javafx.scene.Scene$MouseHandler.access$1500(Scene.java:3485)
at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1762)
at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2494)
at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:380)
at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:294)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.tk.quantum.GlassViewEventHandler.lambda$handleMouseEvent$354(GlassViewEventHandler.java:416)
at com.sun.javafx.tk.quantum.QuantumToolkit.runWithoutRenderLock(QuantumToolkit.java:389)
at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:415)
at com.sun.glass.ui.View.handleMouseEvent(View.java:555)
at com.sun.glass.ui.View.notifyMouse(View.java:937)
Caused by: java.lang.IllegalArgumentException: Invalid URL or resource not found
at javafx.scene.image.Image.validateUrl(Image.java:1110)
... 49 more
继承了directoryChooser方法
//Handles when user presses button to open file chooser and select
//the folder of images
private void DirectoryChooser(){
DirectoryChooser chooser = new DirectoryChooser();
chooser.setTitle("Open images folder");
folder = chooser.showDialog(window);
//Null directory check
if(folder == null){
System.out.println("Null directory");
}
//Else make the image array from that folder
else{
System.out.println(folder);
makeImageViewArr(folder.getAbsolutePath());
}
}
//END METHOD
此目录路径将用作另一个方法(makeImageViewArr(String folderName))方法的参数。
//Makes imageView arraylist from all images in a given directory
private ArrayList<ImageView> makeImageViewArr(String folderName) {
System.out.println(folderName);
//transer file names from directory folder to string array
File imagesDir = new File(folderName);
File[] strImageList = imagesDir.listFiles();
myMouseHandler mouseHandler = new myMouseHandler();
//instantiate imageview arraylist
arrImageList = new ArrayList<ImageView>();
//get files from folder & start at 1 to ignore ds.Store
for( int count = 1; count < strImageList.length; count++ ) {
ImageView imgView = new ImageView( strImageList[ count ].getPath() );
imgView.setOnMouseClicked( mouseHandler );
imgView.setFitHeight(500);
imgView.setFitWidth(500);
imgView.setPreserveRation(true);
arrImageList.add( imgView );
}
return arrImageList;
}//END METHOD
答案 0 :(得分:2)
您将文件路径作为字符串传递给ImageView
构造函数:
ImageView imgView = new ImageView( strImageList[ count ].getPath() );
但是,使用ImageView
的{{1}}构造函数需要一个URL。如documentation中所述:
使用从指定URL加载的图像分配新的ImageView对象。
文件路径不是URL,通常甚至不能有效地形成URL(例如,它可能包含非法字符,例如空格)。
因此,您应该传递一个从文件中获取的URL,而不是传递路径:
String
另外,您的ImageView imgView = new ImageView( strImageList[ count ].getURI().toString() );
(原文如此)方法会将所选的DirectorChooser()
转换为File
,然后您将其传递到String
方法,您可以立即创建该方法一个makeImageViewArr(...)
。这很奇怪(至少可以说)。只需更改方法以接受文件,然后直接传递文件:
File
和
private void DirectoryChooser(){
DirectoryChooser chooser = new DirectoryChooser();
chooser.setTitle("Open images folder");
folder = chooser.showDialog(window);
//Null directory check
if(folder == null){
System.out.println("Null directory");
}
//Else make the image array from that folder
else{
System.out.println(folder);
makeImageViewArr(folder);
}
}