在Graphics类中使用drawString方法时出现问题

时间:2015-03-18 14:34:34

标签: java

基本上我正在尝试使用drawString方法,这是我的代码:

public void paintComponent( Graphics g )
    { 
        super.paintComponent( g );
        Graphics2D g2 = ( Graphics2D ) g;
        g2.setColor( Color.BLACK ); 
        g2.drawRect( 0, 0, 29, 29 ); 
        g2.drawString( mark, 11, 20 ); 
    }

我不断从Eclipse中收到此错误:"打开项目"的Java构建路径属性页面。有谁知道如何解决这个问题? 任何帮助将不胜感激!

0 个答案:

没有答案