当前位置: 代码迷 >> 综合 >> The method setValue(String) in the type ParamTag is not applicable for the arguments (long)
  详细解决方案

The method setValue(String) in the type ParamTag is not applicable for the arguments (long)

热度:31   发布时间:2023-12-15 11:24:09.0

今天花了约6个小时,研究一个小小的问题,可是还是没有解决。后来脑子里浮现出一首歌曲的一段“.....你说你感到万分沮丧,甚至开始怀疑人生......”(陈淑桦 - 梦醒时分,词、曲:李宗盛)(现在解决了,在当天晚上。20160721)。LifeRay Portlet Param的一个问题及其解决: 


我的源代码:




下面是测量值的清单:
detectlist = (List)renderRequest.getAttribute("udvalue");for (UT_Detect_Value ulist:detectlist){ //ulist 是新定义的的一个对象的名称。//增强型For循环的语法是: for(ElementType element:arrayName){循环体}; %>
检测点编号 传感器编号 传感器测值 日期 注释 SN 操作
<%List
<%=ulist.getPointNumberD() %> <%=ulist.getPointDetect_Number() %> <%=ulist.getPointDetect_Value() %> <%=ulist.getPointDetect_Date() %> <%=ulist.getPointDetect_Assit_Infor() %> <%=ulist.getRecordSN() %>
<% String s = "test";Long l = ulist.getRecordSN();// s = GetterUtil.getSt
  相关解决方案