Java窗体程序调用静态资源
简介
介绍JAVA窗体程序调用图片、音频、字体三种静态资源的代码。使用这种方法调用静态资源,可以直接把静态资源打包到JAR包里。
在音频调用中,可能会由于Eclipse的原因报错,解决办法参见有关import sun.audio.AudioPlayer(或者其它文件)的问题
Demo
这是我封装的一个修改JFrame外观的类,在里面使用的就是接下来贴的方法。
函数定义
在一个类中(继承自JFrame的一个类)定义一下方法,很遗憾不能设置成静态方法跨类调用。
/** * 根据相对路径加载图片 * @param path: 图片的相对路径 * @return: 获取到的图片对象 */public Image getImagePath(String path) { Image image=null; InputStream is = (InputStream) this.getClass().getClassLoader().getResourceAsStream(path); try { image=ImageIO.read(is); } catch (IOException e) { e.printStackTrace(); } return image; } /** * 根据相对路径加载音频 * @param path: 音频文件的相对路径 * @return: 获取到的音频对象 */public AudioStream getAudioPath(String resource){ InputStream is = (InputStream) this.getClass().getClassLoader().getResourceAsStream(resource); AudioStream as = null; try { as = new AudioStream(is); } catch (IOException e) { e.printStackTrace(); } return as; } /** * 根据相对路径加载字体 * @param path: 字体文件的相对路径 * @return: 获取到的字体对象 */public Font getDefinedFont(String path) { if (definedFont == null) { InputStream is = null; BufferedInputStream bis = null; try { is = (InputStream) this.getClass().getClassLoader().getResourceAsStream(path); bis = new BufferedInputStream(is); definedFont = Font.createFont(Font.TRUETYPE_FONT, bis); definedFont = definedFont.deriveFont(25f); definedFont = definedFont.deriveFont(Font.BOLD); } catch (FontFormatException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { try { if (null != bis) { bis.close(); } if (null != is) { is.close(); } } catch (IOException e) { e.printStackTrace(); } } } return definedFont; }
调用方法
/*图片*/logo = getImagePath("resource/image/logo.png"); logoIcon = new ImageIcon(logo); logoLabel = new JLabel(logoIcon); /*字体*/titel = new JLabel(name); titel.setFont(getDefinedFont("resource/font/叶根友毛笔特色简体.ttf")); /*音乐*/backMusic = getAudioPath("resource/music/竹苑情歌.au"); AudioPlayer.player.start(backMusic); /*播放背景音乐*/
关于txt
如果仅仅是读取的话,可以考虑用上述方法打入到JAR包中,但是如果涉及到修改TXT文件的内容,就不能再打入到JAR里了,那么操作的方法就是,在源码中需要操作文件的地方直接写文件名,没有路径,然后把文件保存在JAR文件的同一目录下,就可以实现文件的操作了。当然,其它资源文件也可以用这种方法访问,但是在一些具体的情况下,还是将资源文件打入到JAR包会比较方便。

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

Java 8引入了Stream API,提供了一种强大且表达力丰富的处理数据集合的方式。然而,使用Stream时,一个常见问题是:如何从forEach操作中中断或返回? 传统循环允许提前中断或返回,但Stream的forEach方法并不直接支持这种方式。本文将解释原因,并探讨在Stream处理系统中实现提前终止的替代方法。 延伸阅读: Java Stream API改进 理解Stream forEach forEach方法是一个终端操作,它对Stream中的每个元素执行一个操作。它的设计意图是处
