当前位置:  技术问答>java相关

Java 都支持那些图形格式?为什么连 ICON 和 BMP 这样通用的格式都不自带支持!!!!!

    来源: 互联网  发布时间:2015-03-12

    本文导语:  Icon img_1 = new ImageIcon("img.jpg"); Icon img_2 = new ImageIcon("img.bmp"); Icon img_3 = new ImageIcon("img.ioc"); JLabel lab_1 = new JLabel(img_1); JLabel lab_2 = new JLabel(img_2); JLabel lab_3 = new JLabel(img_3); 结果只有第一个标签可以正常...

Icon img_1 = new ImageIcon("img.jpg");
Icon img_2 = new ImageIcon("img.bmp");
Icon img_3 = new ImageIcon("img.ioc");

JLabel lab_1 = new JLabel(img_1);
JLabel lab_2 = new JLabel(img_2);
JLabel lab_3 = new JLabel(img_3);

结果只有第一个标签可以正常的显示,后两个却什么也没有?????

真搞不懂是什么原因??

请各位高手指点!!!

这几个图像都在同一个路径下的,不会出现路径的问题!



|
通用的JPG,GIF!
import java.awt.*;
import java.io.*;
import java.awt.image.*;

public class BMPFile extends Component 
{
   //--- Private constants
   private final static int BITMAPFILEHEADER_SIZE = 14;
   private final static int BITMAPINFOHEADER_SIZE = 40;
   //--- Private variable declaration
   //--- Bitmap file header
   private byte bitmapFileHeader[] = new byte[14];
   private byte bfType[] = { 'B', 'M' };
   private int bfSize = 0;
   private int bfReserved1 = 0;
   private int bfReserved2 = 0;
   private int bfOffBits = BITMAPFILEHEADER_SIZE + BITMAPINFOHEADER_SIZE;
   //--- Bitmap info header
   private byte bitmapInfoHeader[] = new byte[40];
   private int biSize = BITMAPINFOHEADER_SIZE;
   private int biWidth = 0;
   private int biHeight = 0;
   private int biPlanes = 1;
   private int biBitCount = 24;
   private int biCompression = 0;
   private int biSizeImage = 0x030000;
   private int biXPelsPerMeter = 0x0;
   private int biYPelsPerMeter = 0x0;
   private int biClrUsed = 0;
   private int biClrImportant = 0;
   //--- Bitmap raw data
   private int bitmap[];
   //--- File section
   private FileOutputStream fo;
   //--- Default constructor
   public BMPFile () 
   {
   }
   public void saveBitmap(String parFilename, Image parImage, int parWidth, int parHeight) 
   {
      try 
      {
         fo = new FileOutputStream(parFilename);
         save(parImage, parWidth, parHeight);
         fo.close();
      }
      catch(Exception saveEx) 
      {
         saveEx.printStackTrace();
      }
   }
   /*
    *  The saveMethod is the main method of the process. This method
    *  will call the convertImage method to convert the memory image to
    *  a byte array; method writeBitmapFileHeader creates and writes
    *  the bitmap file header; writeBitmapInfoHeader creates the
    *  information header; and writeBitmap writes the image.
    *
    */
   private void save(Image parImage, int parWidth, int parHeight) 
   {
      try 
      {
         convertImage(parImage, parWidth, parHeight);
         writeBitmapFileHeader();
         writeBitmapInfoHeader();
         writeBitmap();
      }
      catch(Exception saveEx) 
      {
         saveEx.printStackTrace();
      }
   }
   /*
    * convertImage converts the memory image to the bitmap format (BRG).
    * It also computes some information for the bitmap info header.
    *
    */
   private boolean convertImage(Image parImage, int parWidth, int parHeight) 
   {
      int pad;
      bitmap = new int[parWidth * parHeight];
      PixelGrabber pg = new PixelGrabber(parImage, 0, 0, parWidth, parHeight, bitmap, 0, parWidth);
      try 
      {
         pg.grabPixels();
      }
      catch(InterruptedException e) 
      {
         e.printStackTrace();
         return (false);
      }
      pad = (4 - ((parWidth * 3) % 4)) * parHeight;
      biSizeImage = ((parWidth * parHeight) * 3) + pad;
      bfSize = biSizeImage + BITMAPFILEHEADER_SIZE + BITMAPINFOHEADER_SIZE;
      biWidth = parWidth;
      biHeight = parHeight;
      return (true);
   }
   /*
    * writeBitmap converts the image returned from the pixel grabber to
    * the format required. Remember: scan lines are inverted in
    * a bitmap file!
    *
    * Each scan line must be padded to an even 4-byte boundary.
    */
   private void writeBitmap() 
   {
      int size;
      int value;
      int j;
      int i;
      int rowCount;
      int rowIndex;
      int lastRowIndex;
      int pad;
      int padCount;
      byte rgb[] = new byte[3];
      size = (biWidth * biHeight) - 1;
      pad = 4 - ((biWidth * 3) % 4);
      if(pad == 4)// > 16) & 0xFF);
            fo.write(rgb);
            if(rowCount == biWidth) 
            {
               padCount += pad;
               for(i = 1; i > 8) & 0x00FF);
      return (retValue);
   }
   /*
    *
    * intToDWord converts an int to a double word, where the return
    * value is stored in a 4-byte array.
    *
    */
   private byte[] intToDWord(int parValue) 
   {
      byte retValue[] = new byte[4];
      retValue[0] = (byte)(parValue & 0x00FF);
      retValue[1] = (byte)((parValue >> 8) & 0x000000FF);
      retValue[2] = (byte)((parValue >> 16) & 0x000000FF);
      retValue[3] = (byte)((parValue >> 24) & 0x000000FF);
      return (retValue);
   }
}


|
jpeg,gif!

|
yes,only jpeg and gif

    
 
 

您可能感兴趣的文章:

  • java命名空间javax.print类docflavor的类成员方法:服务格式化打印数据定义及介绍
  • java格式化数值成货币格式示例
  • java命名空间javax.print类docflavor的类成员方法:客户端格式化打印数据定义及介绍
  • 高手请进!请教java把TXT或XML或PDF格式的文档转换成word格式文档的问题
  • Java读写包括中文的txt文件时不同编码格式问题解决
  • JAVA支持的声音和图象的格式太少了,
  • 求助:用java如何编写生成pdf格式报表的程序?
  • 用记事本写的程序为什么不能转化成java格式的
  • Java 源代码格式化工具 Jalopy
  • java格式化时间示例
  • 哪儿有chm格式的java电子书?
  • 请问Java支持什么声音文件格式?
  • 有谁知道怎样查看或解压扩展名为 .001(.002,.003等)我有JAVA文章是那个格式的
  • VCard格式读写的Java类库 cardme
  • 怎样将sql格式为yyyy-MM-dd hh:mm:ss的时间转化为java.util.Date或者java的long数据类型
  • 如何在java下截取桌面图像存为jpg格式?
  • winrar解压的java电子书为什么是“***.pdb”,pdb是什么格式?
  • 哪为做过读取PDF格式文件的JAVA程序
  • 求pdf格式的java书籍,给高分!!!
  • 怎么用java script判断是用户输入的字符串内容是正确的日期格式
  • Java 的函数参考有没有chm格式的???
  • IE6对XML的支持比较好,但不支持JAVA……
  • java的URL类支持多少protocol?能支持windows的callto吗?
  • 很多书上讲Linux为Java提供内核级支持,可是为什么我要用时还得装java虚拟机?
  • 听说windows不在支持java了,那么java的跨平台性怎么体现呢?
  • 请问IE6怎么不支持JAVA(想知道详细一点)?(对JAVA不熟想了解以下)
  • Windows XP不再支持JAVA后...
  • 只考虑WEB应用, JAVA适合吗? 除了IIS, 我还能让什么东西来支持我的ASP? JAVA有关的东东有没有好办法?
  • 初学者问题:IE6还支持JAVA虚拟机吗?
  • Red Hat 7.3 是不是不支持 java 了?
  • 支持Java/PHP的PaaS Jelastic
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何在java中调用windows自带的程序?
  • 最后36分,java 怎么使用ie自带的xml解释器?
  • 不吝加分噢!用Java连接PB中自带的Adaptive Server Anywhere数据库怎么做?
  • 请问:在java的自带例子中(demo/jfc/Notepad/resources)中的资源文件Notepad_zh_CN.properties内的uXXXX怎么显示出来,我怎么输入?
  • 在笔记本上安装了Fedora Core 5,用FC5自带的Eclipse的开发java程序,Eclipse运行非常慢,了解者请回答。
  • 使用java自带des加密算法实现文件加密和字符串加密
  • 听说java自带一个压缩的类,请问有知道这方面的没有?
  • java命名空间java.sql类types的类成员方法: java_object定义及介绍
  • 我想学JAVA ,是买THINK IN JAVA 还是JAVA2核心技术:卷1 好???
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: imageflavor定义及介绍
  • 请问Java高手,Java的优势在那里??,Java主要适合于开发哪类应用程序
  • java命名空间java.lang.management类managementfactory的类成员方法: getcompilationmxbean定义及介绍
  • 如何将java.util.Date转化为java.sql.Date?数据库中Date类型对应于java的哪个Date呢
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getlibrarypath定义及介绍
  • 谁有电子版的《Java编程思想第二版(Thinking in java second)》和《Java2编程详解(special edition java2)》?得到给分
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getstarttime定义及介绍
  • 本人想学java,请问java程序员的待遇如何,和java主要有几个比较强的方向
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: stringflavor定义及介绍
  • 我对JAVA一窍不通,可惜别人却给我一个Java的project,要我做一个安装程序,请问哪里有JAVA INSTALLER下载,而且我要不要安装java的sdk才能完成此项任务?
  • java命名空间java.security类keystore的类成员方法: getdefaulttype定义及介绍
  • 新年第一天,让我们讨论一下未来一年JAVA的发展趋势! 个人认为,JAVA将主要朝ERP和JAVA手机方面发展!
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getclasspath定义及介绍
  • 我想学Java,但不知道Java的实用的开发工具有那些,Java主要用在哪些方面,EJB到底是什么东西??
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: javaserializedobjectmimetype定义及介绍
  • redhat7.3下,java程序打印中文直接用java命令执行正常,用crontab执行java命令为乱码
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: javafilelistflavor定义及介绍
  • 各位学java的朋友,学java的未来是什么,你们学java都用来开发什么项目啊!来者给分!!
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getvmname定义及介绍
  • 请问java程序中的import为什么有的用java.….*,而有的又用java.….…,有什么区别吗?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3