1. 首页 > 科技

Eclipse是怎么制作出来的? 怎么用eclipse做个网页

Eclipse是怎么制作出来的?怎么用eclipse做个网页

用Eclipse怎么把这个做出来

具体就不知道咯 反正是用java做出来的,怎么做出来的 ?想一想 假如没有 Eclipse 你是怎么编译java文件的?

当然是使用 javac 和 java 这两个命令来编译 Eclipse 相当于为你指定文件路径 把文件内容 用 javac 编译 ,然后用 java 命令执行 !

新装了一个eclipse,然后该怎么做

Source folder:选择项目名称,也就是你要先建立一个项目;

Package:选择或添加包名,也就为了方便管理把类放入相应包中;

Modrfiers:选择类的修饰符;

Superclass:你建立的这个类所继承的类;

Interfaces:可以选择后边的Add添加所要继承的类;

Which method stubs would you like to create?下边三个选项分别是

1.建立类的时候创建主函数吗,如果要创建就打上勾;

2.要根据父类创建构造函数吗?如果需要就打上勾;

3.继承抽象方法;

Do you wat to add comments?(..............................)后边的选项是:是否添加注释;

然后一个类就创建好了!

java eclipse 制作

新建一个FrameTest.java类,代码如下:

*********************************************************

import java.awt.BorderLayout;

import java.awt.Dimension;

import java.awt.FlowLayout;

import java.awt.Toolkit;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.InputEvent;

import java.awt.event.KeyEvent;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JMenu;

import javax.swing.JMenuBar;

import javax.swing.JMenuItem;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.KeyStroke;

public class FrameTest extends JFrame {

public FrameTest() {

// 菜单栏

JMenu file = new JMenu("文件(F)");

file.setMnemonic('f');

JMenuItem exitMenu = new JMenuItem("退出(X)");

exitMenu.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_X,

InputEvent.CTRL_MASK));

exitMenu.addActionListener(new ExitActionListener());

file.add(exitMenu);

JMenu help = new JMenu("帮助(H)");

help.setMnemonic('h');

JMenuItem aboutMenu = new JMenuItem("关于(A)");

aboutMenu.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_A,

InputEvent.ALT_MASK));

aboutMenu.addActionListener(new AboutActionListener());

help.add(aboutMenu);

JMenuBar menubar = new JMenuBar();

menubar.add(file);

menubar.add(help);

this.add(menubar, BorderLayout.NORTH);

// 按钮和标签

JButton exitButton = new JButton("关闭(C)");

exitButton.setMnemonic('c');

exitButton.addActionListener(new ExitActionListener());

JButton aboutButton = new JButton("关于(A)");

aboutButton.setMnemonic('a');

aboutButton.addActionListener(new AboutActionListener());

JLabel info = new JLabel("单击帮助菜单或按钮,查看信息。");

JPanel center = new JPanel(new FlowLayout());

center.add(exitButton);

center.add(aboutButton);

center.add(info);

this.add(center, BorderLayout.CENTER);

this.setSize(230, 150);

Toolkit tool = Toolkit.getDefaultToolkit();

Dimension screen = tool.getScreenSize();

this.setLocation(screen.width / 2 - this.getWidth() / 2, screen.height / 2 - this.getHeight() / 2);

this.setVisible(true);

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

public static void main(String[] args) {

FrameTest t = new FrameTest();

}

}

class ExitActionListener implements ActionListener {

public void actionPerformed(ActionEvent e) {

System.exit(0);

}

}

class AboutActionListener implements ActionListener {

public void actionPerformed(ActionEvent e) {

JOptionPane.showMessageDialog(null, "我爱JAVA!", "关于",

JOptionPane.INFORMATION_MESSAGE);

}

}

*********************************************************

运行结果如下:

用 Eclipse 怎样做Java 要具体步骤

新建工程 再建包,再建JAVA 文件,就可以了啊。。。要导入的话就 FILE-IMPORT 找到文件的SRC