欢迎来到皮皮网网首页

【律师咨询平台源码】【压测平台源码】【VB源码 定时扫描】java当前小程序源码_java当前小程序源码是什么

来源:必过源码下载 时间:2024-11-06 11:34:08

1.java��ǰС����Դ��
2.JAVA小程序————很简单
3.java:求一个用swing来做小程序,当前a当我是小程序源用来修改配置文件用的,求代码谢谢
4.求java经典小程序代码
5.简单的java程序代码?

java当前小程序源码_java当前小程序源码是程序<strong>律师咨询平台源码</strong>什么

java��ǰС����Դ��

       // My car shop.java

       import java.awt.*;

       import java.awt.event.*;

       import javax.swing.*;

       import javax.swing.border.*;

       public class carshop extends JFrame

       {

        // JPanel to hold all pictures

        private JPanel windowJPanel;

        private String[] cars = { "","阿斯顿马丁", "美洲虎", "凯迪拉克",

        "罗孚", "劳斯莱斯","别克"};

        private int[] jiage = { 0,, , ,

        , , };

        // JLabels for first snack shown

        private JLabel oneJLabel;

        private JLabel oneIconJLabel;

        // JLabels for second snack shown

        private JLabel twoJLabel;

        private JLabel twoIconJLabel;

        // JLabels for third snack shown

        private JLabel threeJLabel;

        private JLabel threeIconJLabel;

        // JLabels for fourth snack shown

        private JLabel fourJLabel;

        private JLabel fourIconJLabel;

        // JLabels for fifth snack shown

        private JLabel fiveJLabel;

        private JLabel fiveIconJLabel;

        // JLabels for sixth snack shown

        private JLabel sixJLabel;

        private JLabel sixIconJLabel;

       // JTextField for displaying snack price

        private JTextArea displayJTextArea;

        // JLabel and JTextField for user input

        private JLabel inputJLabel;

        private JComboBox selectCountryJComboBox;

        private JLabel inputJLabel2;

        private JTextField inputJTextField2;

        // JButton to enter user input

        private JButton enterJButton;

        //JButton to clear the components

        private JButton clearJButton;

        // no-argument constructor

        public carshop()

        {

        createUserInterface();

        }

        // create and position GUI components; register event handlers

        private void createUserInterface()

        {

        // get content pane for attaching GUI components

        Container contentPane = getContentPane();

        // enable explicit positioning of GUI components

        contentPane.setLayout( null );

        // set up windowJPanel

        windowJPanel = new JPanel();

        windowJPanel.setBounds( , , , );

        windowJPanel.setBorder( new LineBorder( Color.BLACK ) );

        windowJPanel.setLayout( null );

        contentPane.add( windowJPanel );

        // set up oneIconJLabel

        oneIconJLabel = new JLabel();

        oneIconJLabel.setBounds( , , , );

        oneIconJLabel.setIcon( new ImageIcon( "images/阿斯顿马丁.jpg" ) );

        windowJPanel.add( oneIconJLabel );

        // set up oneJLabel

        oneJLabel = new JLabel();

        oneJLabel.setBounds( , , , );

        oneJLabel.setText( "阿斯顿马丁" );

        oneJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( oneJLabel );

        // set up twoIconJLabel

        twoIconJLabel = new JLabel();

        twoIconJLabel.setBounds( , , , );

        twoIconJLabel.setIcon( new ImageIcon( "images/美洲虎.jpg" ) );

        windowJPanel.add( twoIconJLabel );

        // set up twoJLabel

        twoJLabel = new JLabel();

        twoJLabel.setBounds( , , , );

        twoJLabel.setText( "美洲虎" );

        twoJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( twoJLabel );

        // set up threeIconJLabel

        threeIconJLabel = new JLabel();

        threeIconJLabel.setBounds( , , , );

        threeIconJLabel.setIcon( new ImageIcon(

        "images/凯迪拉克.jpg" ) );

        windowJPanel.add( threeIconJLabel );

        // set up threeJLabel

        threeJLabel = new JLabel();

        threeJLabel.setBounds( , , , );

        threeJLabel.setText( "凯迪拉克" );

        threeJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( threeJLabel );

        // set up fourIconJLabel

        fourIconJLabel = new JLabel();

        fourIconJLabel.setBounds( , , , );

        fourIconJLabel.setIcon( new ImageIcon( "images/罗孚.jpg" ) );

        windowJPanel.add( fourIconJLabel );

        // set up fourJLabel

        fourJLabel = new JLabel();

        fourJLabel.setBounds( , , , );

        fourJLabel.setText( "罗孚" );

        fourJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( fourJLabel );

        // set up fiveIconJLabel

        fiveIconJLabel = new JLabel();

        fiveIconJLabel.setBounds( , , , );

        fiveIconJLabel.setIcon( new ImageIcon(

        "images/劳斯莱斯.jpg" ) );

        windowJPanel.add( fiveIconJLabel );

        // set up fiveJLabel

        fiveJLabel = new JLabel();

        fiveJLabel.setBounds( , , , );

        fiveJLabel.setText( "劳斯莱斯" );

        fiveJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( fiveJLabel );

        // set up sixIconJLabel

        sixIconJLabel = new JLabel();

        sixIconJLabel.setBounds( , , , );

        sixIconJLabel.setIcon( new ImageIcon( "images/别克.jpg" ) );

        windowJPanel.add( sixIconJLabel );

        // set up sixJLabel

        sixJLabel = new JLabel();

        sixJLabel.setBounds( , , , );

        sixJLabel.setText( "别克" );

        sixJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( sixJLabel );

       // set up enterJButton

        enterJButton = new JButton();

        enterJButton.setBounds( , , , );

        enterJButton.setText( "Enter" );

        contentPane.add( enterJButton );

        enterJButton.addActionListener(

        new ActionListener() // anonymous inner class

        {

        // event handler called when enterJButton is clicked

        public void actionPerformed( ActionEvent event )

        {

        enterJButtonActionPerformed( event );

        }

        } // end anonymous inner class

        ); // end call to addActionListener

       // set up clearJButton

        clearJButton = new JButton();

        clearJButton.setBounds( , , , );

        clearJButton.setText( "Clear" );

        contentPane.add( clearJButton );

        // set up inputJLabel

        inputJLabel = new JLabel();

        inputJLabel.setBounds( , , , );

        inputJLabel.setText( "Please make selection:" );

        contentPane.add( inputJLabel );

        selectCountryJComboBox = new JComboBox( cars );

        selectCountryJComboBox.setBounds( , , , );

        selectCountryJComboBox.setMaximumRowCount( 3 );

        contentPane.add( selectCountryJComboBox );

        // set up inputJTextField

       inputJLabel2 = new JLabel();

        inputJLabel2.setBounds( , , , );

        inputJLabel2.setText( "Input the Numble:" );

        contentPane.add( inputJLabel2 );

        // set up inputJTextField

        inputJTextField2 = new JTextField();

        inputJTextField2.setBounds( , , , );

        inputJTextField2.setHorizontalAlignment( JTextField.RIGHT );

        contentPane.add( inputJTextField2 );

        clearJButton.addActionListener(

        new ActionListener() // anonymous inner class

        {

        // event handler called when clearJButton is clicked

        public void actionPerformed( ActionEvent event )

        {

        clearJButtonActionPerformed( event );

        }

        } // end anonymous inner class

        );

        // set up displayJTextField

        displayJTextArea = new JTextArea();

        displayJTextArea.setBounds( , ,, );

        displayJTextArea.setEditable( false );

        contentPane.add( displayJTextArea );

        // set properties of application's window

        setTitle( "My car Shop" ); // set title bar string

        setSize( , ); // set window size

        setVisible( true ); // display window

        } // end method createUserInterface

        private void clearJButtonActionPerformed( ActionEvent event )

        {

        // clear the JTextFields

        inputJTextField2.setText( "" );

        displayJTextArea.setText("");

        } // end method clearJButtonActionPerformed

        private void enterJButtonActionPerformed( ActionEvent event )

        {

        double z;

        double c;

        int x;

        int y;

        x=selectCountryJComboBox.getSelectedIndex();

        y=Integer.parseInt(inputJTextField2.getText());

        double discountRate;

        int amount = Integer.parseInt( inputJTextField2.getText());

        switch (amount/5)

        {

        case 0:

        discountRate = 0;

        break;

        case 1:

        discountRate = 1;

        break;

        case 2:

        discountRate = 2;

        break;

        case 3:

        discountRate = 3;

        break;

        default:

        discountRate = 4;

        } // end switch statement

        c=1-discountRate/;

        z=jiage[x]*y*c;

        displayJTextArea.append("你选择的是:"+cars[x]+";"+

       "它的单价是:"+jiage[x]+";" +"你购买该产品的数量是:"+y+"," +"\n"+"该数量的源码折扣是:"

        +discountRate + " %"+";"+"本次消费的总价格是:"+z+"元"+"!"+"\n");

        }

        public static void main( String args[] )

        {

        carshop application = new carshop();

        application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );

        } // end method main

       } // end class carshop

JAVA小程序————很简单

       import javax.swing.*;

       import java.awt.event.*;

       public class TestFrame extends JFrame,implements ActionListner

       {

        public TestFrame()

        {

        JButton b = new JButton("exit");

        b.addActionListener(this);

        Container cp = this.getContentPane();

        cp.add(b);

        this.setSize(,);

        this.setVisible(true);

        }

        public void actionPerformed(ActionEvent evt)

        {

        System.exit(0);

        }

        public static void main(String[] args)

        {

        new TestFrame();

        }

       }

java:求一个用swing来做小程序,我是当前a当压测平台源码用来修改配置文件用的,求代码谢谢

       import java.awt.event.ActionEvent;

       import java.awt.event.ActionListener;

       import javax.swing.JButton;

       import javax.swing.JFrame;

       import javax.swing.JLabel;

       import javax.swing.JPanel;

       @SuppressWarnings("serial")

       public class Test extends JFrame {

        private JPanel jp = new JPanel();

        private JButton jb = new JButton("按钮一");

        private JButton jb = new JButton("按钮二");

        private JButton jb = new JButton("按钮三");

        private JButton[] jb = new JButton[] { jb,小程序源VB源码 定时扫描 jb, jb };

        private JLabel jl = new JLabel("请单击按钮!");

        private int count = 0;

        public Test() {

        for (int i = 0; i < jb.length; i++) {

        jp.add(jb[i]);

        }

        jp.add(jl);

        this.add(jp);

        this.setTitle("点按钮,程序记录单击按钮的源码次数和名字!");

        jb.addActionListener(new ActionListener() {

        @Override

        public void actionPerformed(ActionEvent e) {

        // TODO Auto-generated method stub

        Test.this.jl.setText(jl.getText());

        }

        });

        for (int i = 0; i < jb.length; i++) {

        jb[i].addActionListener(new ActionListener() {

        @Override

        public void actionPerformed(ActionEvent e) {

        // TODO Auto-generated method stub

        if (e.getSource() == jb) {

        Test.this.jl.setText("您单击的当前a当是按钮一,您总共单机了" + (++count)

        + "次按钮");

        } else if (e.getSource() == jb) {

        Test.this.jl.setText("您单击的小程序源是按钮二,您总共单机了" + (++count)

        + "次按钮");

        } else if (e.getSource() == jb) {

        Test.this.jl.setText("您单击的程序是按钮三,您总共单机了" + (++count)

        + "次按钮");

        }

        }

        });

        this.setBounds(,源码 , , );

        this.setVisible(true);

        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        }

        }

        public static void main(String[] args) {

        new Test();

        }

       }

求java经典小程序代码

       代码如下:

       public class HelloWorld {

           public static void main(String []args) {

                   int a = 3, b = 7 ;

                  System.out.println("Hello World!");

           }

       

            public static int f(int a, int b){

                 return a*a + a*b + b*b;

            }

       

       }

       结果如下:

简单的java程序代码?

       æˆ‘需要一段最简单的java代码程序

       1、最简单的java代码肯定就是这个了,如下:publicclassMyFirstApp{ publicstaticvoidmain(String[]args){ System.out.print(Helloworld);}}“helloworld”就是应该是所有学java的新手看的第一个代码了。

       2、publicclassHelloWorld{ publicstaticvoidmain(String[]args){ System.out.println(helloworld!);}}基本概念Java是一种可以撰写跨平台应用软件的面向对象的程序设计语言。

       3、下面的程序可以直接通过编译运行,自己寻找要用到的代码段。

       4、比如myeclipse,那么就是创建一个类,然后敲入main,alt+/可以导出main函数(Java程序的入口就是main)。如果没有用工具,需要配置环境变量的,配置好之后。

       5、我想学编写JAVA程序,在学之前来了解下。编写JAVA时要建立哪几个文件夹?说明每个文件夹的作用,学编写JAVA是不是英语一定要会?还有那些代码是不是要记住?帮我推荐个编写JAVA的工具,最好是免费的。

java简单小程序编写,就一点点

       ä»Žé›¶å¼€å§‹å­¦ä¹ Java,一定要是从基础内容进行学起,这个也是要在学习的时候多加注意,因为现在有的培训机构课程安排其实并不是从最基础的开始的。

       å½“然,这也不是让你把全部的基础知识都必须掌握,但是,Java的一些基本的概念等这些是需要你了解的。

       ç”¨JAVA编写一个银行系统的小程序,要求如图片所示!图片看不清就看文字吧!启动软件,打印欢迎使用中星ATM银行系统,并提示输入R:注册,L:登录,Q:退出注册流程分为:用户注册,允许注册多个用户。

       é‚£ä¹ˆï¼Œå®šåˆ¶ç”µå•†ç½‘站功能,费用自然也就会增加,功能需求越多,功能实现难度越高,随之电商网站开发费用也就越高。

       ä»»ä½•ä¸€ä¸ªç¨‹åºéƒ½éœ€è¦è¿›è¡Œæ”¹è¿›å­¦ä¹ æ˜¯ä¸€ä¸ªéžå¸¸æ¼«é•¿çš„过程,在开始学习的时候,每个人都会编写一些简单的程序,前期编写的小程序是非常简单的,仅仅能够实现一些简单的功能。

       å¾ˆç®€å•çš„java程序制作

       1、目录方法1:编写你的第一个Java程序要开始用Java编写程序,先设置你的工作环境。任何一种类似记事本的程序都能够用于Java编程。

       2、比如myeclipse,那么就是创建一个类,然后敲入main,alt+/可以导出main函数(Java程序的入口就是main)。如果没有用工具,需要配置环境变量的,配置好之后。

       3、最简单的java代码肯定就是这个了,如下:publicclassMyFirstApp{ publicstaticvoidmain(String[]args){ System.out.print(Helloworld);}}“helloworld”就是应该是所有学java的新手看的第一个代码了。

       4、java的字体Font类、GraphicsEnvironment类编程问题:利用Font类、画图环境类,把系统字体全部抽出来,包括颜色、字体。

       5、第一步:启动Eclipse,第一次启动软件时,会提示选择工作空间(WorkSpace),可在硬盘上新建一个文件夹作为工作空间,这个文件夹将会保存你所编写的所有的源代码。第二步:新建一个简单的Java工程。

       6、可以做一个批处理文件,在里面调用java虚拟机运行你的java程序。也可以用某种编程语言,像vb,c或c++编个程序,生成exe,能调用java虚拟机运行你的程序,很简单的。

怎么用记事本编写java

       é¦–先在电脑中新建一个记事本,将记事本的后缀改为“.java”,如下图所示。然后使用记事本的方式打开,输入java程序代码,如下图所示。接着在键盘上按“win+R”快捷键键打开运行,输入“cmd”,如下图所示。

       Jconsole:Java进行系统调试和监控的工具总之,jdk并不是一个应运软件,并不能从哪里运行。

       é¦–先,先看看电脑是否设置为显示已知文件扩展名。如果没有,要先设置一下。点击计算机,工具(T),文件夹选项(O),查看,在高级设置一栏里找到隐藏已知文件扩展名,把前面的钩钩去掉。

       å¾ˆç®€å•çš„啊,在记事本里写上相应的java代码,写好保存后将相应的文件名后缀改为***.java,然后用CMD去编译一下就可以了。具体流程是这样的:然后就可以去CMD那里编译和运行了。

       å…ˆä¸‹è½½å®‰è£…javasdk6或6以上最新版本,并安装。

求一个简单又有趣的JAVA小游戏代码

       System.out.println(猜数字游戏,请输入一个数0到,输入-1结束游戏:);inti=sc.nextInt();if(i==-1){ break;}count++;if(ir){ System.out.print(你猜小了。

       è¦ç”¨JAVA做一个小项目,类别不限,随便什么程序都行,不用太复杂。最好有注释。谢谢。这个有点太简单了。毕竟是一个小项目啊。

       --求大神指点如何用java做扫雷小游戏详细...有源代码吗--怎么用Java做一个扫雷程序,要原创。。做好了给加--求高手写一个扫雷的JAVA代码,我愿出的悬赏或者更多。

       ç¬¬ä¸€ä¸ªç±»ï¼ŒæœåŠ¡å™¨ä¸»çº¿ç¨‹ç±»ã€‚packagesrc;//定义一个包,存放JAVA文件。

       //这是个聊天程序,在ECLIPSE运行Client.java就可以了。