大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
某个java编译成class后,放到classes下面,然后lib目录下,也有这个class所在的jar包,这样就导致classpath实际上有两个相同的class,通过方法class.getProtectionDomain()找到class所在的jar包,然后删除。
在梁园等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供成都网站设计、成都网站建设 网站设计制作按需规划网站,公司网站建设,企业网站建设,高端网站设计,全网整合营销推广,外贸网站制作,梁园网站建设费用合理。
1.首先打开Eclipse开发软件,然后在工具栏的【Window】,点击后找到弹出列表中的【Preferences】选项,然后点击这个选项。
2.现在弹出的窗口就是JAVA开发人员常见的设置窗口了,我们依次点开【JAVA】【Editor】【Content Assist】,最后把鼠标点击在【Content Assist】上。
3.现在,我们关注右边的面板,有一个【Auto activation triggers for JAVA】,这个配置的意思就是,什么情况下会触发自动提示,默认里面应该是只有一个【.】的符号,这也是为什么我们写代码的时候在输入【.】的时候会出现自动提示的原因,现在,我们需要做的是,把qwertyu...等键盘上所有你想触发自动提示的字符都输入后面那个框里。
4.到这里你已经是设置完了,然后一次点击【Apply】和【OK】两个剑,现在随便找一个JAVA类测试下,看看是不是已经可以了呢如果有任何疑问欢迎在下方留言,我会耐心解答。
你做过java的GUI开发吗???
用netbeans或者给eclipse安装visual editor或swt designer,这样就可以进行可视化开发,你所说的那个就是众多swing控件中的一个,直接往frame里拖动就可以了。
GridLayout layout=new GridLayout(2,1);gridlayout布局本来就是要平分的,改用其他面板就可以了,用borderlayout或者flowlayout都可以,borderlayout就是一个放北一个放南,flowlayout设置宽度跟主面板一样就可以了
private JMenuBar createJMenuBar(Action[] actions){//创建菜单栏
JMenuBar menubar = new JMenuBar(); //实例化菜单栏
JMenu menuFile = new JMenu("文件");
JMenu menuAbout = new JMenu("帮助");
menuAbout.add(new JMenuItem(actions[0]));
menuFile.add(new JMenuItem(actions[1]));
menubar.add(menuFile); //增加菜单
menubar.add(menuAbout);
return menubar;
}
private JToolBar createJToolBar(Action[] actions){//创建工具条
JToolBar toolBar = new JToolBar();//实例化工具条
for(int i=0; i actions.length;i++){
JButton bt = new JButton(actions[i]);
bt.setRequestFocusEnabled(false);
//设置不需要焦点
toolBar.add(bt);//增加按钮到工具栏
}
return toolBar; //返回工具栏
}
//以下是我做项目的完整代码,你参考一下
/**************************************
* Title: 数据库综合操作
* Description: text类
* date : 2008-7-22
* author : yangcong
***************************************/
package framejava;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
import javax.swing.text.*;
//简单的文本编辑器
public class mainframe extends JFrame{
JPanel textPane = new JPanel(); //文本窗格,编辑窗口
JLabel statusBar = new JLabel("JAVA综合操作平台V1.1 杨聪制作"); //状态栏
JFileChooser filechooser = new JFileChooser();//文本选择器
JButton shujuku = new JButton("数据库操作");
JButton wangluo = new JButton("网络操作");
JButton about = new JButton(" 关 于 ");
JButton exit = new JButton(" 退 出 ");
public mainframe(){ //构造函数
enableEvents(AWTEvent.WINDOW_EVENT_MASK);
try {
jbInit();
}
catch (Exception e) {
e.printStackTrace();
}
}
private void jbInit() throws Exception {
this.setTitle("JAVA综合操作平台V1.1"); //调用父类构造函数
Action[] actions={ //Action数组,各种操作命令
new AboutAction(),
new ExitAction()
};
textPane.add(shujuku);
textPane.add(wangluo);
textPane.add(about);
textPane.add(exit);
/***********************************************************************/
shujuku.addActionListener(new mainframe_shujuku_actionAdapter(this));
shujuku.setSelected(true);
/***********************************************************************/
/***********************************************************************/
wangluo.addActionListener(new mainframe_wangluo_actionAdapter(this));
wangluo.setSelected(true);
/***********************************************************************/
about.addActionListener(actions[0]);
exit.addActionListener(actions[1]);
statusBar.setForeground(Color.red);
setJMenuBar(createJMenuBar(actions));
Container container= getContentPane();
container.add(createJToolBar(actions),BorderLayout.NORTH);
container.add(textPane,BorderLayout.CENTER);
container.add(statusBar,BorderLayout.SOUTH);
// mainframe m_view = new mainframe();
// m_view.pack();
// Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
// Dimension frameSize = m_view.getSize();
// if (frameSize.height screenSize.height) {
// frameSize.height = screenSize.height;
// }
// if (frameSize.width screenSize.width) {
// frameSize.width = screenSize.width;
// }
// m_view.setLocation( (screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
//
// m_view.setSize(260,200);
// m_view.setVisible(true);
setSize(260,200);
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//关闭窗口时退出程序
}
private JMenuBar createJMenuBar(Action[] actions){//创建菜单栏
JMenuBar menubar = new JMenuBar(); //实例化菜单栏
JMenu menuFile = new JMenu("文件");
JMenu menuAbout = new JMenu("帮助");
menuAbout.add(new JMenuItem(actions[0]));
menuFile.add(new JMenuItem(actions[1]));
menubar.add(menuFile); //增加菜单
menubar.add(menuAbout);
return menubar;
}
private JToolBar createJToolBar(Action[] actions){//创建工具条
JToolBar toolBar = new JToolBar();//实例化工具条
for(int i=0; i actions.length;i++){
JButton bt = new JButton(actions[i]);
bt.setRequestFocusEnabled(false);
//设置不需要焦点
toolBar.add(bt);//增加按钮到工具栏
}
return toolBar; //返回工具栏
}
/**************************数据库动作操作*************************************/
void shujuku_actionPerformed(ActionEvent e) {
shujuku.setSelected(false);
datamainframe d_view = new datamainframe();
d_view.pack();
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimension frameSize = d_view.getSize();
if (frameSize.height screenSize.height) {
frameSize.height = screenSize.height;
}
if (frameSize.width screenSize.width) {
frameSize.width = screenSize.width;
}
d_view.setLocation( (screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
d_view.setSize(270,190);
d_view.setVisible(true);
}
class mainframe_shujuku_actionAdapter
implements java.awt.event.ActionListener {
mainframe adaptee;
mainframe_shujuku_actionAdapter(mainframe adaptee) {
this.adaptee = adaptee;
}
public void actionPerformed(ActionEvent e) {
adaptee.shujuku_actionPerformed(e);
}
}
/***********************************************************************/
/********************网络动作操作**************************************/
void wangluo_actionPerformed(ActionEvent e) {
wangluo.setSelected(false);
netview n_view = new netview();
n_view.pack();
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimension frameSize = n_view.getSize();
if (frameSize.height screenSize.height) {
frameSize.height = screenSize.height;
}
if (frameSize.width screenSize.width) {
frameSize.width = screenSize.width;
}
n_view.setLocation( (screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
n_view.setSize(800,700);
n_view.setVisible(true);
}
class mainframe_wangluo_actionAdapter
implements java.awt.event.ActionListener {
mainframe adaptee;
mainframe_wangluo_actionAdapter(mainframe adaptee) {
this.adaptee = adaptee;
}
public void actionPerformed(ActionEvent e) {
adaptee.wangluo_actionPerformed(e);
}
}
/***********************************************************************/
class ExitAction extends AbstractAction{ //退出命令
public ExitAction(){
super("退出");
}
public void actionPerformed(ActionEvent e){
System.exit(0);
}
}
class AboutAction extends AbstractAction{//关于选项命令
public AboutAction(){
super("关于");
}
public void actionPerformed(ActionEvent e){
JOptionPane.showMessageDialog(mainframe.this,"JAVA综合操作平台V1.1\n"+"杨聪制作");
}
}
public static void main(String args[]){
new mainframe();
}
}