字符串连接中的一个挑战

时间:2013-06-13 04:35:10

标签: java swing fonts jtable string-concatenation

我想将卢比符号(Font)与字符串a连接起来以显示在我的应用程序中,所以请在这种类型的连接或任何其他可用方法中帮助我。我在显示字符串的终极位置是JTable。我不想做任何表格渲染。

我的代码如下:

  public static Font getRupeeFont(){

try {
    File file = new File(System.getProperty("user.dir") +"/resources/fonts/Rupee.ttf");
    if(!file.exists())
        return new DefaultFont(new Font("Rupee",BOLD,20));
    Font tahoma = Font.createFont(Font.TRUETYPE_FONT, file);
    tahoma = tahoma.deriveFont(Font.BOLD, 20);
    return tahoma;
}
catch (FontFormatException ex) {
    ex.printStackTrace();
    return system_font1;
} catch (IOException ex) {
    ex.printStackTrace();
    return system_font1;
}
 }



  String Amount = "Total Amount = "+ClassName.getRupeeFont();

0 个答案:

没有答案