當前位置:首頁 » 編程語言 » 動畫java

動畫java

發布時間: 2024-04-26 01:02:40

① 怎麼用java做動畫

重寫paint方法,來實現將自己定義的圖片繪制到組件中,然後啟動一個線程來控制paint方法。 示例: ××××××××××××××××××××××××××× import javax.swing.*; import java.awt.*; class MyPanel extends JPanel implements Runnable { private Image img; private int i=0; private int j=0; public MyPanel() { img=new ImageIcon("1.png").getImage(); } public void paint(Graphics g) { g.drawImage(img,0,0,60,104,i*60,j*104,i*60+60,j*104+104,this); } public void run() { while(true) { while(j { while(i { try { Thread.sleep(300); } catch(Exception e) { } this.repaint(); i++; } j++; i=0; } i=0; j=0; } } } public class test extends JFrame { private MyPanel p; public test() { p=new MyPanel(); this.add(p,BorderLayout.CENTER); this.setBounds(300,200,300,300); this.setTitle("人物行走圖"); new Thread(p).start(); this.setVisible(true); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public static void main(String args[]) { new test(); } } ××××××××××××××××××××××× 將以上源碼保存為:test.java,編譯,然後下載下面的圖片 將下載的圖片改名為1.png" target="_blank" >



,然後將其和編譯後生成的class文件放在同一文件夾下,然後運行就可以了·~~
熱點內容
怎麼設蘋果手機id密碼忘了怎麼辦 發布:2025-07-13 14:30:38 瀏覽:210
sqlintvarchar 發布:2025-07-13 14:20:13 瀏覽:310
linuxisthisok 發布:2025-07-13 14:12:13 瀏覽:161
sql查詢分析器下載 發布:2025-07-13 14:07:45 瀏覽:53
怎麼設置網路與計算機配置同步 發布:2025-07-13 14:01:39 瀏覽:450
jsp查詢資料庫顯示 發布:2025-07-13 14:01:37 瀏覽:190
winrar解壓慢 發布:2025-07-13 13:57:26 瀏覽:741
我的世界新手區伺服器 發布:2025-07-13 13:50:52 瀏覽:954
M視頻壓縮 發布:2025-07-13 13:50:04 瀏覽:210
潤享wifi密碼是多少 發布:2025-07-13 13:49:48 瀏覽:612