简体   繁体   中英

Include file (svg) in java jsp

I need to include a raw svg file in a jsp page (liferay portlet) to manipulate it with css. I usually do this in php with this simple string:

<?php include('images/image.svg'); ?>

How can I do this in java?

您只需要使用@include

<%@include file="images/image.svg" %>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM