I have a Java program with a UI that uses LookAndFeel, I know that I can alter the program default theme via the command prompt using properties: java -Dswing.defaultlaf=Metal ....
In addition I know that I can alter the program font type using code : UIManager.put("TextArea.font", new Font("Serif", Font.PLAIN, 12));
My Question is whether it is possible to specifically switch fonts non programatically, either via a configuration file or a command prompt property, and if so could you give an exampe.
Thanks a bunch,
aag
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…