Hallo Andy und Maxx,
also,
ich verwende swing,
ich habe jdk1.3.1_09 und j2sdk1.4.2_05, aber mit keinem von beidem funktioniert es,
so war mein Code aus:
public class Example extends JFrame{
public Example(){
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
....
}
}
Jetzt hatte ich es noch mal so probiert:
public class Example extends JFrame{
public Example(){
try{
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
}catch(UnsupportedLookAndFeelException ex){
System.err.println("LookAndFeel class not found: " + "com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
}
...
}
}
Da kommt aber diese Fehlermeldung beim Kompilieren:
Error: (28,22) unreported exception java.lang.ClassNotFoundException; must be caught or declared to be thrown
Viele Grüße,
Miriam