English 中文(简体)
以小程序绘图图像
原标题:draw image in applet

我想在小程序里逐个显示所有图像, 但是它只显示下面所给出的文件夹的最后一张图像 。

public class ImageInSwingTest extends JApplet
{
    String filePath="C:\Users\yogi\Pictures\pictures"; //all .png files more than 200 files
    String files;
    File folder=new File(filePath);
    File[] listOfFiles;
    Image m;

    @Override
    public void init()
    {
        listOfFiles=folder.listFiles();
        for(int i=0;i<listOfFiles.length;i++)
        {
            if(listOfFiles[i].isFile())
            {
                files=listOfFiles[i].getName();
                if(files.endsWith(".png"))
                {
                    String filepath=listOfFiles[i].getAbsolutePath();
                    System.out.println(filepath);
                    try {
                         m = ImageIO.read(new File(filepath));
                        paint(ImageInSwingTest.this.getGraphics());

                    } catch (IOException ex) {
                        Logger.getLogger(ImageInSwingTest.class.getName()).log(Level.SEVERE, null, ex);
                    }
                }
            }

        }
    }
    public void paint(Graphics g)
    {
        g.drawImage(m, 0, 0, this);

    }

}

so, please can any one tell me how can i display all images one by one.? Thanks.

最佳回答

所以,请大家告诉我 我怎样才能一个一个地展示所有图像。谢谢。

  • 由于在 < code> 中为( int i=0; i< listOf Files. la长; i+++) 替换 JApplet 内容

  • JPane 放到 JApplet

  • images 放到 Icon[] 的阵列

  • Icon 放到 JLabel

  • 使用 gridLayout JLabel Icons 连接到 JPane

  • 不要直接漆到 JApplet ,使用 JPanne JComponent ,使用覆盖方法 JComponent () 而不是 paint ()

编辑 编辑 编辑 编辑 编辑 编辑

我希望所有图像都替换彼此, 所以所有图像看起来都像在播放电影

  • 您必须暂停此进程 Thread. sleep( int);

  • 您可以在 SwingWorker Runnable#Thread 中使用 Tread.sliep(int); ,在 SwingWorker 中使用 Thread.sliep(int); ,

  • 在 Swing GUI 中不要使用 < code> Thread. sleep( int); 其它方式, 因为可以阻拦事件调度线索, 并且可能不会画任何东西, 或只有最后一个图像

  • Runnable #Thread 会更好、最容易, 但从 Runnable #Tread 到 Swing GUI 的任何输出都必须将 JLabel. setIcon( MyIcon) 包到 invokeLater

问题回答

结束循环所需的时间太短, 您只能看到最后显示的图像 。 在绘制每个图像后尝试添加一个 < code> pause





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...