[带图片的工程打包.ppt

  1. 1、本文档共10页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[带图片的工程打包

说明 例子 运行效果 textpad eclipse eclipse netbeans netbeans jar * (1)下面的写法相对于硬盘上的目录,打包后无法找到文件 JLabel label=new JLabel(new ImageIcon(lotus1.jpg)); Image image=ImageIO.read(new File(lotus.jpg)); (2)采用下面的方式访问的路径是相对于jar文件内部,将jpg文件放到jar文件中的根目录即可 JLabel label=new JLabel(new ImageIcon (ClassLoader.getSystemResource(lotus1.jpg))); Image image = ImageIO.read (ClassLoader.getSystemResourceAsStream(lotus.jpg)); (3)采用下面的方式访问的路径是相对于jar文件内部该.class文件所在目录,将jpg放在jar文件中.class文件所在目录即可。 JLabel label=new JLabel(new ImageIcon (getClass().getResource(lotus1.jpg))); Image image = ImageIO.read (getClass().getResourceAsStream(lotus.jpg)); Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. 下面是一个例子 import java.awt.*; import java.io.*; import javax.imageio.*; import javax.swing.*; public class ImageTest { public static void main(String[] args) { ImageFrame frame = new ImageFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } } class ImageFrame extends JFrame { public ImageFrame() { setTitle(ImageTest); setSize(800,600); ImagePanel imagePanel = new ImagePanel(); add(imagePanel,BorderLayout.CENTER);//添加到中间 JLabel label=new JLabel(new ImageIcon(“lotus1.jpg”));//打包时需要修改 add(label,BorderLayout.SOUTH);//添加到南部 } } Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. class ImagePanel extends JPanel { private Image image; public ImagePanel() { try { image=ImageIO.read(new

您可能关注的文档

文档评论(0)

caiyl9924 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档