Java判断包含某个字符contains方法

2026-02-14 21:12:45

1、这是把数据库里面的数据导出到excel中显示

2、代码如下

if (null != ar.getCbXz()){

String Str = null;

String Str1 = null;

String Str2 = null;

String Str3 = null;

if(ar.getCbXz().contains("1")){  

Str1 = "交强险";

}else{

Str1 = "";

}

if(ar.getCbXz().contains("2")){  

Str2 = "车损险";

}else{

Str2 = "";

}

if(ar.getCbXz().contains("3")){  

Str3 = "三责";

}else{

Str3 = "";

}

Str = Str1+Str2+Str3;

sheet.addCell(new Label(10, i + 2, Str,contentStyle));// 承保险种

}else{

sheet.addCell(new Label(10, i + 2,"",contentStyle));

}

Java判断包含某个字符contains方法

2、这是jsp页面中的显示

4、代码如下

<td align="center" nowrap="nowrap">

  <c:if test="${fn:contains(item.cbXz,1) }">交强险</c:if> 

  <c:if test="${fn:contains(item.cbXz,3) }">三责</c:if> 

  <c:if test="${fn:contains(item.cbXz,2) }">车损险</c:if> 

  </td>

Java判断包含某个字符contains方法

猜你喜欢