所以我正在做这个项目以显示某些字体。
问题是原始代码有效
但是当我尝试使用扫描仪时,它不会

原始码

 public static void main(String[]args)
{
font("Times New Roman");
}

public static void font(String x){
World canvas = new World();//Creates a new world called canvas
Graphics picGraphics = canvas.getGraphics();//creates picGraphics which gets used in the world
picGraphics.setColor(Color.MAGENTA);//Color is set to Magenta
Font font = new Font(x,Font.BOLD,80);
picGraphics.setFont(font);//sets the font
//drawString parameters tell the string that is written and the coordinates to place the word
picGraphics.drawString("Font Tester",105,255);
canvas.repaint();
}


现在使用扫描仪的代码

public static void font2(){
World canvas = new World();//Creates a new world called canvas
Graphics picGraphics = canvas.getGraphics();//creates picGraphics which gets used in the world
picGraphics.setColor(Color.MAGENTA);//Color is set to Magenta
Scanner keyboard=new Scanner(System.in);
String x = keyboard.next();
Font font = new Font(x,Font.BOLD,80);
picGraphics.setFont(font);//sets the font
//drawString parameters tell the string that is written and the coordinates to place the word
picGraphics.drawString("Font Tester",105,255);
canvas.repaint();
}


如您在该代码中看到的,我有一个扫描仪,以便用户可以将想要的字体直接输入到要显示的程序中。但是,每当我将新代码与Time New Roman这样的示例一起使用时,窗口中显示的字体甚至都不是Times new Roman,而是更像Arial ...
我也尝试过将扫描仪放在主要方法中,这也不会产生任何不同的结果

帮帮我?

顺便说一句:已经添加了许多预设代码,因此,例如World canvas = new World();其他位将帮助显示弹出的空白窗口,在这里我可以显示字体

谢谢

最佳答案

Scanner.next方法仅返回输入的第一个单词,即Times,并且系统找不到具有该名称的字体。

您可以使用nextLine方法读取单词之间带有空格的整行:

String x = keyboard.nextLine();

10-05 23:03
查看更多