我想将卢比符号(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();