答案 0 :(得分:9)
答案 1 :(得分:2)
答案 2 :(得分:0)
如果检索网址有困难,可以使用以下代码获取宽度和高度。
try {
File f = new File(yourclassname.class.getResource("data/buildings.jpg").getPath());
BufferedImage image = ImageIO.read(f);
int height = image.getHeight();
int width = image.getWidth();
System.out.println("Height : "+ height);
System.out.println("Width : "+ width);
}
catch (IOException io) {
io.printStackTrace();
}
注意: 数据是/ src中包含图片的文件夹。