当前位置: 代码迷 >> J2SE >> java中图片加载中的有关问题
  详细解决方案

java中图片加载中的有关问题

热度:43   发布时间:2016-04-23 20:42:41.0
java中图片加载中的问题
public class GameFrame extends JFrame{
              public void paint(Graphics g) {

     Font f = new Font("楷体",Font.BOLD,100);
    g.setFont(f);
     g.drawString("圆", 150,150);
}
中报错:The type java.lang.CharSequence cannot be resolved. It is indirectly referenced from required .class files

------解决方案--------------------
参考:http://www.blogjava.net/zJun/archive/2007/10/16/153374.html
  相关解决方案