java code

Solutions on MaxInterview for java code by the best coders in the world

showing results for - "java code"
Garth
17 Jan 2020
1import java.awt.*;
2import java.awt.event.*;
3
4public class TextEinAusgabe2 extends Frame
5{
6  TextField eingabe;
7  Label     ausgabe;
8
9  public static void main( String[] args )
10  {
11    TextEinAusgabe2 meinFenster = new TextEinAusgabe2( "Text-Ein-/Ausgabe" );
12    meinFenster.setSize( 400, 200 );
13    meinFenster.setVisible( true );
14  }
15
16  public TextEinAusgabe2( String fensterTitel )
17  {
18    super( fensterTitel );
19    Label hinweis = new Label( "Text eingeben und mit Return abschliessen" );
20    eingabe = new TextField();
21    ausgabe = new Label();
22    add( BorderLayout.NORTH,  eingabe );
23    add( BorderLayout.CENTER, hinweis );
24    add( BorderLayout.SOUTH,  ausgabe );
25    eingabe.addActionListener(
26      new ActionListener() {
27        public void actionPerformed( ActionEvent ev ) {
28          meineMethode(); } } );
29    addWindowListener(
30      new WindowAdapter() {
31        public void windowClosing( WindowEvent ev ) {
32          dispose();
33          System.exit( 0 ); } } );
34  }
35
36  void meineMethode()
37  {
38    ausgabe.setText( "Der eingelesene Text lautet: " + eingabe.getText() );
39  }
40}
41
Luigi
03 Sep 2016
1import java.awt.*;
2import java.awt.event.*;
3
4public class TextEinAusgabe2 extends Frame
5{
6  TextField eingabe;
7  Label     ausgabe;
8
9  public static void main( String[] args )
10  {
11    TextEinAusgabe2 meinFenster = new TextEinAusgabe2( "Text-Ein-/Ausgabe" );
12    meinFenster.setSize( 400, 200 );
13    meinFenster.setVisible( true );
14  }
15
16  public TextEinAusgabe2( String fensterTitel )
17  {
18    super( fensterTitel );
19    Label hinweis = new Label( "Text eingeben und mit Return abschliessen" );
20    eingabe = new TextField();
21    ausgabe = new Label();
22    add( BorderLayout.NORTH,  eingabe );
23    add( BorderLayout.CENTER, hinweis );
24    add( BorderLayout.SOUTH,  ausgabe );
25    eingabe.addActionListener(
26      new ActionListener() {
27        public void actionPerformed( ActionEvent ev ) {
28          meineMethode(); } } );
29    addWindowListener(
30      new WindowAdapter() {
31        public void windowClosing( WindowEvent ev ) {
32          dispose();
33          System.exit( 0 ); } } );
34  }
35
36  void meineMethode()
37  {
38    ausgabe.setText( "Der eingelesene Text lautet: " + eingabe.getText() );
39  }
40}
Sophia
27 Oct 2016
1class Anupam
2{
3  public static void main(String...args)
4  {
5    System.out.println("HI this is Anupam Guin ");
6  }
7}
Wendy
30 Feb 2016
1int[] marks = {50, 55, 60, 70, 80}; System.out.println(marks[0]);// Output: 50 System.out.println(marks[4]);// Output: 80
Cale
25 Aug 2019
1java basic code example