「SamsTeachYourselfJava in 24 Hours、6th edition?」という本を読んでいたようですが、
とにかく、あなたはこのようにそれを行うことができます:
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.*;
public class SalutonFrame extends JFrame {
public SalutonFrame() throws UnsupportedLookAndFeelException {
super("Saluton Mondo!");
try {
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
JFrame someFrame = new JFrame();
setSize(350, 100);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
catch (Exception exc) {
// error handling
}
}
}
または、次のように行うことができます。
import javax.swing.*;
public class SalutonFrame extends JFrame {
public SalutonFrame() {
super("Saluton Frame");
setLookAndFeel();
setSize(350, 100);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
private void setLookAndFeel() {
try {
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
} catch (Exception exc) {
// error handling
}
}
public static void main(String[] args) {
SalutonFrame sal = new SalutonFrame();
}
}