本文介紹了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;
}
使用此選項,您實際上覆蓋了JPanel
和getY
,并返回將影響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 via
Graphics object and return the correct
Dimensions (in your case the image dimensions) and than call [
pack()][4] on
JFrame`設置為可見之前但在添加組件之后重寫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在繪制圖像時顯示奇怪的錯誤的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,