java not a jpeg file_Java处理图片错误

下午没事看了看服务器的错误日志,全是两个错误,你来一个我来一个循环往复,这里记录一下。

javax.imageio.IIOException: I/O error reading PNG header!

at com.sun.imageio.plugins.png.PNGImageReader.readHeader(PNGImageReader.java:315)

at com.sun.imageio.plugins.png.PNGImageReader.readMetadata(PNGImageReader.java:654)

at com.sun.imageio.plugins.png.PNGImageReader.readImage(PNGImageReader.java:1229)

at com.sun.imageio.plugins.png.PNGImageReader.read(PNGImageReader.java:1577)

javax.imageio.IIOException: Not a JPEG file: starts with 0x89 0x50

at com.sun.imageio.plugins.jpeg.JPEGImageReader.readImageHeader(Native Method)

at com.sun.imageio.plugins.jpeg.JPEGImageReader.readNativeHeader(JPEGImageReader.java:604)

at com.sun.imageio.plugins.jpeg.JPEGImageReader.checkTablesOnly(JPEGImageReader.java:342)

at com.sun.imageio.plugins.jpeg.JPEGImageReader.gotoImage(JPEGImageReader.java:476)

at com.sun.imageio.plugins.jpeg.JPEGImageReader.readHeader(JPEGImageReader.java:597)

at com.sun.imageio.plugins.jpeg.JPEGImageReader.readInternal(JPEGImageReader.java:1054)

at com.sun.imageio.plugins.jpeg.JPEGImageReader.read(JPEGImageReader.java:1034)

这两个错误原因很简单: 就是你把PNG格式的图片保存为JPG后缀或者把JPG格式的图片保存为PNG后缀 ,也就是用户的图片后缀是错误的,要自己去获取正确的图片格式。

有时PS打开也会提示:无法完成请求,因为文件格式模块不能解析该文件。

下面是我的代码:

FileInputStream is = new FileInputStream("d://test.jpg");;

ImageInputStream iis = null;

Iterator it = ImageIO.getImageReadersByFormatName("jpg");

ImageReader reader = it.next();

iis = ImageIO.createImageInputStream(is);

reader.setInput(iis, true);

ImageReadParam param = reader.getDefaultReadParam();

Rectangle rect = new Rectangle(0, 0, 100, 100);

param.setSourceRegion(rect);

BufferedImage image = reader.read(0, param);

ImageIO.write(image, "jpg", new File("d://test_.jpg"));

这里的图片就是PNG的,就是单纯改了一下后缀,这里就会出现问题。

其实只需要修改ImageIO.getImageReadersByFormatName这个方法的文件后缀名正确就可以了。后面write这里的参数是没有问题的。

下面是我写的一个判断格式的,供大家参考:

private static final String JPG_HEX = "ff";

private static final String PNG_HEX = "89";

private static final String JPG_EXT = "jpg";

private static final String PNG_EXT = "png";

public static String getFileExt(String filePath) {

FileInputStream fis = null;

String extension = FilenameUtils.getExtension(filePath);

try {

fis = new FileInputStream(new File(filePath));

byte[] bs = new byte[1];

fis.read(bs);

String type = Integer.toHexString(bs[0]&0xFF);

if(JPG_HEX.equals(type)) {

extension = JPG_EXT;

}

if(PNG_HEX.equals(type)) {

extension = PNG_EXT;

}

} catch (FileNotFoundException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

} finally {

try {

if(fis != null) {

fis.close();

}

} catch (IOException e) {

e.printStackTrace();

}

}

return extension;

}

类似还有一个异常:Not a JPEG file: starts with 0x47 0x49,这个是因为gif图片后缀改成了jpg。

Java中,我们可以使用`java.io.File`和`java.nio.file`包提供的API来遍历并读取文件夹下的所有图片。通常,我们关注的是`.jpg`, `.jpeg`, `.png`, `.gif`等常见的图片格式。以下是一个简单的示例,展示如何使用递归方法来实现这个功能: ```java import java.io.*; import java.nio.file.*; import java.util.*; public class ImageScanner { private static final String[] IMAGE_EXTENSIONS = {".jpg", ".jpeg", ".png", ".gif"}; public static void main(String[] args) { File folder = new File("path/to/folder"); // 替换为你需要扫描的文件夹路径 if (folder.exists() && folder.isDirectory()) { scanImages(folder); } else { System.out.println("Folder not found or is not a directory."); } } private static void scanImages(File folder) { try (Stream<Path> files = Files.walk(folder.toPath())) { files.forEach(path -> { if (isImageFile(path)) { System.out.println("Found image: " + path); // 这里你可以选择读取、处理或复制图片到其他地方 // 比如,使用Files.readAllBytes(path); } }); } catch (IOException e) { System.err.println("Error scanning images: " + e.getMessage()); } } private static boolean isImageFile(Path file) { String fileName = file.getFileName().toString(); for (String ext : IMAGE_EXTENSIONS) { if (fileName.endsWith(ext)) { return true; } } return false; } } ``` 在这个示例中,`scanImages`函数会递归地遍历指定目录及其子目录,并通过`isImageFile`方法检查每个文件是否是图片。如果找到图片,它会打印出文件路径。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值