2

I would like to show list of the fonts supported by client browser in a combo list instead of adding fonts manually to the combo. Is it possible to get the list, if yes how to achive this.Thanks in advance.

Anil kumar
  • 416
  • 1
  • 6
  • 18
  • Not in JSP, but client-side (and then if you really need it on the server, you could send this data) http://stackoverflow.com/questions/3368837/list-every-font-a-users-browser-can-display – Thilo Apr 20 '16 at 04:08

1 Answers1

1

No, you cannot list the font using request object in JSP. You can get system supported fonts using GraphicsEnvironment class

Uday
  • 136
  • 1
  • 8