samedi 31 janvier 2015

Swing JOptionPane Fehlermeldung- bitte um Hilfe!

Hallo Leute,



ich hab da mal eine Frage....



Bei mir kommt diese Fehlermeldung :

"Access restriction: The method showInputDialog(Object) from the type JOptionPane is not accessible due to restriction on required library C:\Program Files (x86)\Java

\jre1.8.0_25\lib\rt.jar"



Die Fehlermeldung taucht auf sobald ich versuche ein JOptionPane zu erstellen.



Wisst ihr woher der Fehler kommt, im Quellcode finde ich keinen Fehler.



Quellcode :



import javax.swing.JOptionPane;

public class Kreis3 {





public static void main(String[] args) {





// Variablendefinition

double radius, circumference, area;

String unit, input;



// Eingabe über Eingabedialog und Konvertierung

input = JOptionPane.showInputDialog("Geben Sie den Kreisradius ein: ");

radius = Double.parseDouble(input);



input = JOptionPane.showInputDialog("Geben Sie die Einheit ein: ");

unit = input;



// Berechnungen

circumference = 2.0 * Math.PI * radius;

area = Math.PI * radius * radius;



// Ausgabe über Meldungsfenster

JOptionPane.showMessageDialog(null, "Umfang: " + (float)circumference + " " + unit+ "\nFläche: " + (float)area + " " + unit + '\u00b2');



}



}





Vielen dank;





Swing JOptionPane Fehlermeldung- bitte um Hilfe!

0 commentaires:

Enregistrer un commentaire