logo
  • 教程列表
  • SO官方文檔
  • 資源(在類路徑上)
    • 載入預設配置
    • 從資源載入影象
    • 使用類載入器查詢和讀取資源
    • 從多個 JAR 載入同名資源
  1. StackOverflow 文件
  2. Java Language 教程
  3. 資源(在類路徑上)
  4. 從資源載入影象

從資源載入影象

Created: November-22, 2018

要載入繫結的影象:

package com.example;

public class ExampleApplication {
    private Image getIcon() throws IOException {
        URL imageURL = ExampleApplication.class.getResource("icon.png");
        return ImageIO.read(imageURL);
    }
}
  • 使用類載入器查詢和讀取資源
  • 載入預設配置

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明