2

我正在做我的第一个 java 项目,我很困惑。这将打开一个对话框以获取 0-255 之间的数字,检查它是否为整数并且在范围内,然后使用 int 为图形小程序的背景制作灰色阴影。我让它做它应该做的一切!但它不会绘制小程序。程序在最后一次调用 JOptionPane 后终止。

import javax.swing.JApplet;
import javax.swing.JOptionPane;
import java.awt.Graphics;
import java.awt.Color;

@SuppressWarnings("serial")
public class DrawingShapes extends JApplet
{
  private Shade shade = new Shade();
  private void getColor()
  {
    int rgb = 0;
    boolean useful = false;
    String number = JOptionPane.showInputDialog("Make this easy for me.\n"
    + "Type an integer between 0 and 255");
    {
      try
      {
        rgb = Integer.parseInt(number);
        if (rgb > 0 && rgb < 255)
        {
          useful = true;
          shade.setColor(rgb);
        }
        else
        {
          useful = false;
          number = JOptionPane.showInputDialog( null, "\"" + number + "\""
          + " is not between 0 and 255!\n"
          + "Lrn2 be doin' it right!" );
        }
      }
      catch (NumberFormatException nfe)
      {
      number = JOptionPane.showInputDialog(null, "\"" + number + "\""
      + " is not an integer!\n"
      + "Lrn2 be doin' it right!");
      }
    }
    if (useful)
    {
      JOptionPane.showMessageDialog(null, rgb + " will be the shade of gray.");
      //WHEN this message is closed, the program seems to quit.
      //System.exit(0);
    }
  }
  public static void main(String[] args)
  {
    new DrawingShapes().getColor();
  }
  public class Shade
  {
    private int color;
    public void setColor(int col)
    {
      color = col;
      System.out.println("color: " + color);
      System.out.println("col: " + col); //IT prints these lines....
    }
    public void paint (Graphics g) //Everything after this is sadly ignored.
    {
      int size = 500;
      setSize(size, size);
      int rgb = color;
      Color gray = new Color(rgb,rgb,rgb);
      setBackground(gray);
      System.out.println(rgb + " This should be the third time");
      g.drawOval(0, 0, size, size);
    }
  }
}

我无法弄清楚“public void paint (Graphics g)”有什么问题,但它不会导致任何事情发生。我欢迎任何人的指正,我确定我犯了一个可笑的错误,因为我对这种语言不太满意......

4

1 回答 1

4

这不是一个applet 程序——是的,它扩展了JApplet,但是没有init方法,而是你有一个main方法——一个不会在applet 程序中调用的方法。请先阅读JApplet 教程,然后再进行其他操作。

其他建议:

  • 同样,您将需要适当的init()覆盖。
  • 不要直接在 JApplet 或任何顶级 Window 组件中绘制。
  • 而是在paintComponent(...)JApplet 中显示的 JPanel 的方法中绘制。
  • 不要在paint(...)orpaintComponent(...)方法中设置背景颜色或更改 GUI 的状态。
  • 您需要在方法覆盖中调用该super.paintComponent(...)方法paintComponent(...),这通常是您的方法的第一个方法调用。
  • 此外,您还需要阅读同一站点上的 Swing Graphics 教程,因为它对您有很大帮助。
  • 如果你想创建一个桌面应用程序而不是一个小程序,那么你的攻击会有点不同,因为你不会有一个init()方法覆盖,你需要一个主方法,你会把你的组件到一个 JFrame 作为您的顶级窗口。
  • 为了获得更好的帮助,请在您的问题中发布更少的借口和道歉(我已经删除了大部分),而是专注于以尽可能清晰的方式提供有用的信息。我们对您的情况并不感兴趣,因为我们对帮助解决您的问题很感兴趣,所以请帮助我们帮助您。

运气!

于 2012-09-03T03:07:27.340 回答