Oracle
 sql >> डेटाबेस >  >> RDS >> Oracle

समग्र अद्यतन दर बनाने के लिए स्विंग टाइमर का उपयोग कैसे करें?

स्विंग टाइमर का उपयोग कैसे करें के बारे में और पढ़ें

यहाँ नमूना कोड है:

int delay = 1000; //milliseconds
ActionListener taskPerformer = new ActionListener() {
  public void actionPerformed(ActionEvent evt) {
      //...Perform a task...
  }
};
new Timer(delay, taskPerformer).start();

एक नमूना कोड यहां देखें

नमूना कोड:(200 एमएस के अंतराल पर एक छवि को 1px क्षैतिज रूप से बाएं से दाएं ले जाएं )

private int x = 1;
...
final Image image = ImageIO.read(new File("resources/1.png"));
final JPanel panel = new JPanel() {
    @Override
    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.drawImage(image,x,10,null);
    }
};

int delay = 200; // milliseconds
ActionListener taskPerformer = new ActionListener() {
    public void actionPerformed(ActionEvent evt) {
        x++;
        if (x > 100) {
            x = 1;
        }
        panel.repaint();
    }
};
new Timer(delay, taskPerformer).start();



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. ORA-29280 कैसे हल करें:अमान्य निर्देशिका पथ

  2. मूल एन्क्रिप्शन (एएसओ) सक्षम होने पर ओरेकल में प्रत्येक खराब SQL अनुरोध पर चेकसम विफल क्यों होता है?

  3. सी # में पीएल-एसक्यूएल ब्लॉक द्वारा लौटाए गए dbms.output मान को कैसे प्राप्त करें

  4. Oracle में विदेशी कुंजी निर्माण मुद्दा

  5. मैं Oracle 11g को एकल SQL क्वेरी के लिए अधिक CPU का उपभोग करने के लिए बाध्य क्यों नहीं कर सकता?