首页 javaWEB Map 的一个应用(图片url 或是base64)

Map 的一个应用(图片url 或是base64)

    后台: Map<String,String> map= new  HashMap…

 

 

后台:

Map<String,String> map= new  HashMap<String, String>();

判断

map.put(“tax_cert_display”,invoiceCompany.getTax_cert_thumbnail());
map.put(“tax_cert_type”,”url”);
map.put(“tax_prove_display”, invoiceCompany.getTax_prove_thumbnail());
map.put(“tax_prove_type”,”url”);
map.put(“bank_licence_display”, invoiceCompany.getBank_licence_thumbnail());
map.put(“bank_licence_type”,”url”);
map.put(“business_license_display”,invoiceCompany.getBusiness_license() );
map.put(“business_license_type”,”url”);
map.put(“auth_cert_display”, invoiceCompany.getAuth_cert_thumbnail());
map.put(“auth_cert_type”,”url”);

map.put(“tax_cert_display”,tax_cert);
map.put(“tax_cert_type”,”base64″);
map.put(“tax_prove_display”, tax_prove);
map.put(“tax_prove_type”,”base64″);
map.put(“bank_licence_display”, bank_licence);
map.put(“bank_licence_type”,”base64″);
map.put(“business_license_display”, bank_licence);
map.put(“business_license_type”,”base64″);
map.put(“auth_cert_display”, auth_cert);
map.put(“auth_cert_type”,”base64″);

前台

<c:if test="${not empty  map['tax_cert_display'] }">
	 <p><span>税务登记证:</span>
		<c:if  test="${map['tax_cert_type'] eq 'url'}">
		 <img style="height: 150px; width: 150px;" src="${map['tax_cert_display']}"></img>
		</c:if>
                <c:if test="${map['tax_cert_type'] eq 'base64'}">
	        <img style="height: 150px; width: 150px;" src="data:image/jpg;base64,${map['tax_cert_display']}"></img>
		</c:if>
	</p>
	    <div class="clear"></div>
</c:if>

 

 

 

免责声明:文章内容不代表本站立场,本站不对其内容的真实性、完整性、准确性给予任何担保、暗示和承诺,仅供读者参考,文章版权归原作者所有。如本文内容影响到您的合法权益(内容、图片等),请及时联系本站,我们会及时删除处理。

为您推荐

nodejs 整理记录

nodejs 整理记录

下载包 https://blog.csdn.net/m0_59878114/article/details/120274...
websocket测试html

websocket测试html

<!DOCTYPE html> <html> <head> <meta cha...
bigdemical两个数比较大小

bigdemical两个数比较大小

/*int result = bigdemical1.compareTo(bigdemical2) result = -...
Beetl2.7 中文文档

Beetl2.7 中文文档

Beetl目前版本是2.7.23,相对于其他java模板引擎,具有功能齐全,语法直观,性能超高,以及编写的模板容易维护等...
纯CSS实现多个便签在一行展示,拖动滚动

纯CSS实现多个便签在一行展示,拖动滚动

div <h2>请注意需要在移动端预览,PC端拖拽无效果</h2> <div class=...
返回顶部