如何将一个JLabel的内容传输到另一个?

时间:2011-01-14 08:17:42

标签: java swing move transfer jlabel

 public void movePiece(JLabel destination){
  JLabel currentPiece = piece[oldIndex[0]][oldIndex[1]];
  destination = currentPiece;
  currentPiece.setVisible(false);
  destination.repaint();
  currentPiece.repaint();
 }

目前的移动方法。它需要“传输”文本的JLabel,JLabel获取对JLabel的引用,从中获取文本。有人有任何想法吗?该方法不起作用,只是让您了解它的外观。

例如,如果是这种情况:

JLabel 1:“Trololo” JLabel 2:“你好!”

如果destination为2且currentPiece为1,我希望它看起来像这样:

JLabel 1:“Trololo”.setVisibility(false) JLabel 2:“Trololo”

有效地制作nr。 2可见内容为nr。 1。 不想删除nr。 1,只是让它不可见。

(它们不是指同一个对象,它们只有相同的文字和字体)

1 个答案:

答案 0 :(得分:3)

致电setText更改目的地的内容:

public void movePiece(JLabel destination){
  JLabel currentPiece = piece[oldIndex[0]][oldIndex[1]];
  destination.setText(currentPiece.getText());
  currentPiece.setVisible(false);
}