Java程序无法作为Java Application运行

时间:2013-01-08 16:25:42

标签: java eclipse swing ant

我正在尝试运行我一年前为一个班级制作的Java项目,但是我遇到了一些问题。

当我尝试运行这个java项目时,eclipse中没有选项可以将它作为java应用程序运行。相反,它只允许我选择Ant Build,在选择时会抛出错误:Unable to find Ant file to run.我的代码包含一个main函数,因此出现了问题:为什么我的代码不只是运行main函数?

注意:我不想发布我的整个代码,因为它长达近千行并分成6个类,但是如果我得到一个请求整体的评论,我会的。包括的只是主要课程。

我注意到其他类的顶部包含行package edu.truman.cs260.talpersP3;。我只是从我的电子邮件收件箱中下载了这些java文件,所以我需要以某种方式打包它们吗?

我的主要课程:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

import edu.truman.cs260.talpersP3.*;

public class TalpersProject3

{

private static final int FRAMES_PER_SECOND = 24;
private static final int ICON_WIDTH = 500;
private static final int ICON_HEIGHT = 500;
private static final int DELAY = 1000 / FRAMES_PER_SECOND;

public static void main(String[] args)
{
    //constructs the AnimationComponent
    final AnimationComponent a = new AnimationComponent();
    //creates frame and buttonpanel
    JFrame frame = new JFrame();
    JPanel buttonpanel;

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    //declares the two buttons
    JButton squarebutton = new JButton("Square");
    JButton circlebutton = new JButton("Circle");

    //button implementation
    squarebutton.addActionListener(new ActionListener()
    {
        public void actionPerformed(ActionEvent event)
        {
            a.add(new BouncySquare(50, 50, 100));
            a.repaint();
        }
    });

    circlebutton.addActionListener(new ActionListener()
    {
        public void actionPerformed(ActionEvent event)
        {
            a.add(new BouncyCircle(50, 50, 50));
            a.repaint();
        }
    });


    //sets the size of the AnimationComponent
    a.setSize(ICON_WIDTH,ICON_HEIGHT);

    //constructs the buttonpanel
    buttonpanel = new JPanel();

    //adds the 2 buttons to the panel
    buttonpanel.add(squarebutton);
    buttonpanel.add(circlebutton);

    //frame layout and formatting
    frame.setLayout(new BorderLayout());
    frame.add(buttonpanel, BorderLayout.SOUTH);
    frame.add(a, BorderLayout.CENTER);
    frame.setSize(ICON_WIDTH, ICON_HEIGHT+100);
    frame.setVisible(true);

    //construction of the timer
    Timer t = new Timer(DELAY, new ActionListener()
    {
        public void actionPerformed(ActionEvent event)
        {
            a.bounceCall(); //checks bounds and translates
            a.repaint();
        }
    });
    //timer starts
    t.start();
}
}

3 个答案:

答案 0 :(得分:1)

在编辑器中使用主类打开Java文件,然后右键单击并从上下文菜单中选择“run as ... Java Application”。

答案 1 :(得分:0)

由于您的类具有正确的main(..),它应该在上下文菜单中显示“Run as application”。也许Eclipse项目以一种或另一种方式被破坏。获取最新版本的Eclipse,创建一个新的,空的,简单的Java项目,并将文件复制到新项目的源文件夹中。

答案 2 :(得分:0)

您的java文件是否在构建路径上?如果不是,则日食图标有一个概述的''如the icons of eclipse helios所示。