Here you see a code sample to read an image file. This code will work either the image file is located in a file folder or inside a jar file. You can use javax.imageio.ImageIO
class to read the image file.
package org.kodejava.awt;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.InputStream;
public class ReadingImage {
public static void main(String[] args) {
ReadingImage demo = new ReadingImage();
demo.getImage();
}
public void getImage() {
try {
InputStream is = getClass().getResourceAsStream("/kodejava.png");
BufferedImage image = ImageIO.read(is);
// Do something with the image.
} catch (IOException e) {
e.printStackTrace();
}
}
}
Latest posts by Wayan (see all)
- How do I create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023