试图导入我自己的包

The*_*lot 5 java import

package mainClasses;
    /*
     * Frame Info and all that ****,
     * mainFrame is the actual frame itself
     * it will refer to MainC.java a lot Main class = Main Class
     */
    import java.awt.FlowLayout;
    import java.awt.Graphics;
    import JavaGame.src.resources.*; //Problem Code
    import javax.swing.JButton;
    import javax.swing.JFrame;


    public class mainFrame extends JFrame {


private static final long serialVersionUID = 1L;

public mainFrame() {
    JButton playButton = new JButton();
    JButton infoButton = new JButton();
    JButton exitButton = new JButton();
    int x = 300, y = 300;
    setSize(x, y);
    setVisible(true);
    setLayout(new FlowLayout());
    setTitle("Kingdom Raider");
    setDefaultCloseOperation(EXIT_ON_CLOSE);

    /*Buttons and Properties*/

     playButton.setBounds(x, y, 200, 100);
     playButton.setText("Play!");
    add(playButton);

     infoButton.setBounds(x, y, 200, 100);
     infoButton.setText("Information");
    add(infoButton);

     exitButton.setBounds(x, y, 200, 100);
     exitButton.setText("Exit");
    add(exitButton);
            /* Add image here */

}

public void Painting (Graphics g) {
    //Me.
}
   }
Run Code Online (Sandbox Code Playgroud)

我正在创建一个游戏而且我遇到了导入问题.如您所见,我想导入JavaGame.src.resources,因为我正在尝试导入img.这是我的目录的立场:

在此输入图像描述

我不需要知道resourcesmanager.java上的代码.所以基本上,这个类在包mainClasses中,但我想访问资源包.是什么赋予了?

Luk*_*der 5

你的包名是resources,所以写这个:

import resources.*; // No-Problem Code
Run Code Online (Sandbox Code Playgroud)

目录结构的其余部分特定于Eclipse,与Java类路径无关