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 get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024