ok hi ich hab ne frage/ aufgabe an die community ...
also ich möchte mir ein frame mit java programmieren, mit dem ich mit einem klick auf einen der 4 knöpfe die jeweiligen programme starten kann ...
bilder und so hab ich schon eingefügt, ich weiß der code is mist und optimistisch hinge pasted uns so:bloed: sorry schon mal im voraus: meine frage also was muss ich wo hinschreiben um durch die knöpfe den programmpfad (den ich hier noch nich nirgenswo eingegeneb hab) z.B.: mein housetime.fm srteamRadio zu starten ???? VIELEEEN DANK SCHON MAL IM VORAUS !!:applaus::toll:
hier der code
also ich möchte mir ein frame mit java programmieren, mit dem ich mit einem klick auf einen der 4 knöpfe die jeweiligen programme starten kann ...
bilder und so hab ich schon eingefügt, ich weiß der code is mist und optimistisch hinge pasted uns so:bloed: sorry schon mal im voraus: meine frage also was muss ich wo hinschreiben um durch die knöpfe den programmpfad (den ich hier noch nich nirgenswo eingegeneb hab) z.B.: mein housetime.fm srteamRadio zu starten ???? VIELEEEN DANK SCHON MAL IM VORAUS !!:applaus::toll:
hier der code
Java:
import java.awt.*;
import java.awt.event.*;
/**
*
* Beschreibung
*
* @version 1.0 vom 22.01.2014
* @author
*/
public class Solution extends JFrame {
public Solution() {
super( "Solution");
setDefaultCloseOperation( EXIT_ON_CLOSE);
setLocation( 32, 24);
setSize( 193,401 );
ImageIcon icon = new ImageIcon ("C:\Users\Timo\Pictures\Programmieren\skyrim.jpg");
JLabel l1 = new JLabel (icon);
add(l1); // Label hinzufügen
}
}
public class Solution extends JFrame {
public Solution() {
super( "Solution");
setDefaultCloseOperation( EXIT_ON_CLOSE);
setLocation( 456, 24);
setSize( 193,401 );
ImageIcon icon = new ImageIcon ("C:\Users\Timo\Pictures\Programmieren\call_of_duty_modern_warfare_3-wide.jpg");
JLabel l1 = new JLabel (icon);
add(l1); // Label hinzufügen
}
}
public class extends JFrame {
public Solution() {
super( "Solution");
setDefaultCloseOperation( EXIT_ON_CLOSE);
setLocation( 248, 24);
setSize( 193,401 );
ImageIcon icon = new ImageIcon ("C:\Users\Timo\Pictures\Programmieren\Borderlands 2.jpg");
JLabel l1 = new JLabel (icon);
add(l1); // Label hinzufügen
}
}
class Solution extends JFrame {
public Solution() {
super( "Solution");
setDefaultCloseOperation( EXIT_ON_CLOSE);
setLocation( 662, 24);
setSize( 193,401 );
ImageIcon icon = new ImageIcon ("C:\Users\Timo\Pictures\Programmieren\radio.jpg");
JLabel l1 = new JLabel (icon);
add(l1); // Label hinzufügen
}
}
public class Solution extends Dialog {
// Anfang Attribute
private Button button1 = new Button();
private Button button2 = new Button();
private Button button3 = new Button();
private Button button4 = new Button();
private Button button5 = new Button();
// Ende Attribute
}
public Solution(Frame owner, String title, boolean modal) {
// Dialog-Initialisierung
super(owner, title, modal);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent evt) { dispose(); }
});
int frameWidth = 896;
int frameHeight = 600;
setSize(frameWidth, frameHeight);
Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
int x = (d.width - getSize().width) / 2;
int y = (d.height - getSize().height) / 2;
}setLocation(x, y);
Panel cp = new Panel(null);
add(cp);
// Anfang Komponenten
button1.setBounds(32, 448, 193, 97);
button1.setLabel("Skyrim");
button1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
button1_ActionPerformed(evt);
}
});
cp.add(button1);
button2.setBounds(248, 448, 193, 97);
button2.setLabel("Borderlands 2");
button2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
button2_ActionPerformed(evt);
}
});
cp.add(button2);
button3.setBounds(456, 448, 193, 97);
button3.setLabel("Modern Warfare 3");
button3.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
button3_ActionPerformed(evt);
}
});
cp.add(button3);
button4.setBounds(664, 448, 193, 97);
button4.setLabel("Radio");
button4.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
button4_ActionPerformed(evt);
}
});
cp.add(button5);
// Ende Komponenten
setResizable(false);
setVisible(true);
} // end of public Solution
// Anfang Methoden
public void button1_ActionPerformed(ActionEvent evt) {
// TODO hier Quelltext einfügen
} // end of button1_ActionPerformed
public void button2_ActionPerformed(ActionEvent evt) {
// TODO hier Quelltext einfügen
} // end of button2_ActionPerformed
public void button3_ActionPerformed(ActionEvent evt) {
// TODO hier Quelltext einfügen
} // end of button3_ActionPerformed
public void button4_ActionPerformed(ActionEvent evt) {
// TODO hier Quelltext einfügen
} // end of button4_ActionPerformed
public void button5_ActionPerformed(ActionEvent evt) {
// TODO hier Quelltext einfügen
} // end of button5_ActionPerformed
// Ende Methoden
} // end of class d