Reputation: 73
I have a JSP file with an combobox in it. THe combobox will list all available fonts in system. How can I do that? Thanks.
Upvotes: 0
Views: 64
Reputation: 5256
This should do the trick :
<%@page import="java.awt.Font"%>
<%@page import="java.awt.GraphicsEnvironment"%>
<html>
<body>
<select>
<%
GraphicsEnvironment e = GraphicsEnvironment.getLocalGraphicsEnvironment();
Font[] fonts = e.getAllFonts(); // Get the fonts
for (Font f : fonts) {
%>
<option><%=f.getFontName() %></option>
<%
}
%>
</select>
</body>
</html>
Upvotes: 1