将图标添加到http响应

时间:2016-01-09 11:38:49

标签: java html http server icons

我正在使用 com.sun.net.httpserver.HttpServer 类作为一个简单的服务器,它将浏览器html字符串作为响应发送。 html是在服务器端创建的,然后我将它发送到浏览器进行呈现。 这个html包含一些图标,我找不到如何将这些图标附加到响应中。

例如,我的部分HTML是:

+ "<i class=\"fa float-right-label\"> "
                        + "<a href =\"javascript:newWindow()\"><img src=\"log.png\" alt=\"Log History\" height=\"30\" width=\"30\" border=0></a>"
                        + "</i></label> " + "<ul class=\"animate\">";

使用 log.png 图标。 虽然我的项目资源文件夹中有图标,但是没有发送。

我猜测应该有一些“set resource”方法,但是没找到它。

感谢。

0 个答案:

没有答案