在项目资源文件中,我有一个默认图像 default_image.png。我需要去找他并将其转换为字节数组。
Image image = new Image("/icons/default_image.png");
URL defaultImageFile = this.getClass().getResource("/icons/default_image.png");
byte[] array = Files.readAllBytes(Paths.get(defaultImageFile.getPath()));
我可以将它作为图像带到 URL,但不能作为文件。如何通过 URL 将此文件称为图像?
郎朗坤
相关分类