日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

本文介紹了JPanel在繪制圖像時顯示奇怪的錯誤的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我的棋盤游戲出了一個奇怪的錯誤。該面板由一個帶有GameTiles的2D數組組成,GameTiles是JPanel的一個子類。當我有尺寸(600,500)時,一切都很好,但每當我更改它時,我都會在左上角得到一個奇怪的錯誤。

錯誤圖片(見左上角)

更奇怪的是,當我創建了一個新項目,只是為了試一試,它工作得很完美。這幅畫的代碼是完全相同的,我沒有遇到任何錯誤。會不會是其他原因導致了這個問題?

問題已修復

Anser:我不小心重寫了JPanel的getX和Gty方法。我更改了它們的名稱,現在它工作得很好。

Reversi.java

package org.reversi;

import javax.swing.JFrame;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

import org.reversi.gui.GameFrame;

public class Reversi {
public static void main(String[] args) {
    try {
                 UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    } catch (InstantiationException e) {
        e.printStackTrace();
    } catch (IllegalAccessException e) {
        e.printStackTrace();
    } catch (UnsupportedLookAndFeelException e) {
        e.printStackTrace();
    }

    java.awt.EventQueue.invokeLater(new Runnable() {
        @Override
        public void run() {
            GameFrame frame = new GameFrame("Reversi");
            frame.setSize(600,500);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
        }
    });
}
}

GameBoard.java

package org.reversi.gui;

import java.awt.Graphics;
import java.awt.GridLayout;

import javax.swing.JPanel;

public class GameBoard extends JPanel{
private GameTile[][] gameBoard = new GameTile[8][8];

public GameBoard() {
    initiateLayout();
}

private void initiateLayout() {
    setLayout(new GridLayout(8, 8));

    for(int row = 0 ; row < 8 ; row++) {
        for(int col = 0 ; col < 8 ; col++) {
            gameBoard[row][col] = new GameTile(col,row);
            add(gameBoard[row][col]);
        }
    }
}

@Override
protected void paintComponent(Graphics g) {
    super.paintComponent(g);
    for(int row = 0 ; row < 8 ; row++) 
        for(int col = 0 ; col < 8 ; col++)              
            gameBoard[row][col].repaint();
}
}

GameFrame.java

package org.reversi.gui;

import javax.swing.JFrame;

public class GameFrame extends JFrame {
private GameBoard gameBoard;

/**
 * Creates a new frame.
 * @param gameTitle the title of the frame
 */
public GameFrame(String gameTitle) {
    setTitle(gameTitle);
    gameBoard = new GameBoard();
    add(gameBoard);
}
}

GameTile.java

package org.reversi.gui;

import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;
import javax.swing.JPanel;

public class GameTile extends JPanel {
private BufferedImage image;
private int x;
private int y;

public GameTile(int x, int y) {
    this.x = x;
    this.y = y;
    try {
        this.image = ImageIO.read(new File("tile.png"));
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

@Override
protected void paintComponent(Graphics g) {
    super.paintComponent(g);
    g.drawImage(image, 0, 0, getWidth(), getHeight(), this);
}

public int getX() {
    return x;
}

public int getY() {
    return y;
}
}

圖像鏈接(應命名為tile.png):http://i.imgur.com/ejmCtui.png

推薦答案

根據您的評論:

這就是問題所在,謝謝你指出這一點。我
在棋盤上移動時使用坐標。如果有一些
這將是一個很好的答案

GameTile.java中:

public int getX() {
    return x;
}

public int getY() {
    return y;
}

使用此選項,您實際上覆蓋了JPanelgetY,并返回將影響Layout的坐標。這可以通過添加@Override annotation(注意,不會拋出編譯器錯誤,因此我們正確地重寫了擴展類中的方法):

來實現

@Override
public int getX() {
    return x;
}

@Override
public int getY() {
    return y;
}

正如@xeon所說,您不應該設置坐標,LayoutManager會這樣做。

解決方案:(外加)

刪除這些getter或相應地重命名它們。

不要在JFrame上調用setSize,而是在將JPanel which is drawn to viaGraphics object and return the correctDimensions (in your case the image dimensions) and than call [pack()][4] onJFrame`設置為可見之前但在添加組件之后重寫getPreferredSize

您需要將調用重新定位到setLocationRelativeTo(...)pack()之后。

/li>

最好使用JFrame.DISPOSE_ON_CLOSE所以main(String[] args)方法即使在圖形用戶界面終止后也可以繼續執行。

也不要不必要地擴展JFrame

不要在GameTile類中重復加載相同的圖像,而是一次加載圖像并為GameTile添加參數以接受BufferedImage(我是在使用Internet URL測試時發現這一點的,因為它為每個創建的GameTile讀取一個新圖像)

以下是進行了必要更改的類:

reversi.java:

public class Reversi {

    public static void main(String[] args) {
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (InstantiationException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        } catch (UnsupportedLookAndFeelException e) {
            e.printStackTrace();
        }

        java.awt.EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                new GameFrame("Reversi");
            }
        });
    }
}

GameBoard.java

public class GameBoard extends JPanel {

    private GameTile[][] gameBoard = new GameTile[8][8];

    public GameBoard() {
        initiateLayout();
    }

    private void initiateLayout() {
        setLayout(new GridLayout(8, 8));

        BufferedImage image = null;
        try {
            image = ImageIO.read(new URL("http://i.imgur.com/ejmCtui.png"));
        } catch (IOException e) {
            e.printStackTrace();
        }
        for (int row = 0; row < 8; row++) {
            for (int col = 0; col < 8; col++) {
                gameBoard[row][col] = new GameTile(image, col, row);
                add(gameBoard[row][col]);
            }
        }
    }

    @Override
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        for (int row = 0; row < 8; row++) {
            for (int col = 0; col < 8; col++) {
                gameBoard[row][col].repaint();
            }
        }
    }
}

GameTile.java:

public class GameTile extends JPanel {

    private BufferedImage image;
    private int x;
    private int y;

    public GameTile(BufferedImage image, int x, int y) {
        this.image = image;
        this.x = x;
        this.y = y;
    }

    @Override
    public Dimension getPreferredSize() {
        return new Dimension(image.getWidth(), image.getHeight());
    }

    @Override
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.drawImage(image, 0, 0, getWidth(), getHeight(), this);
    }
}

GameFrame.java:

public class GameFrame {

   private GameBoard gameBoard;

? ? /**
? ? ?* Creates a new frame.
? ? ?*
? ? ?* @param gameTitle the title of the frame
? ? ?*/
? ? public GameFrame(String gameTitle) {
? ? ? ? JFrame frame = new JFrame(gameTitle);
? ? ? ? frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
? ? ? ? gameBoard = new GameBoard();
? ? ? ? frame.add(gameBoard);
? ? ? ? frame.pack();
? ? ? ? frame.setLocationRelativeTo(null);
? ? ? ? frame.setVisible(true);
? ? }
}

這將產生:

這篇關于JPanel在繪制圖像時顯示奇怪的錯誤的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,

分享到:
標簽:JPanel 圖像 奇怪 顯示 繪制 錯誤
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定