0

我在简历中有这段代码,我的 JSP 名称是我的 html 表单上的 ComEtiquetado 我使用 action="ComEtiquetado.jsp" 但我无法获取变量

cd = Integer.parseInt(request.getParameter("cd").toString());

它在 catch 时收到一条空消息

int cd=-1
try{
    cd =     Integer.parseInt(request.getParameter("cd").toString());
    if (cd>-1){
        con.query("Update Calendario set consecutivo='"+cd+"' where medio  like '%cd%' ");
    }
}
catch(Exception exception2){}
<form id="con" name="con" method="post" action="ComEtiquetado.jsp">
  <table>
    <tr>
      <td>
        El consecutivo
      </td>
    </tr>
    <tr>
      <td>
        Cd esta en <font color="red"><%=Ccd %> </font> Cambiar a : 
      </td>
      <td>
        <input type="text" id="cd" name="cd" size="3"> 
      </td>
      <td>
        <input type="submit" value="Cambiar" >
      </td>
  </table>  
</form>

奇怪的是我在其他页面上有完全相同的代码,它在那里工作正常

4

1 回答 1

-2

尝试这个

int cd=-1;

string myValue = request.getParameter("cd");

if(myValue != null && myValue != ""){

try{

    cd =     Integer.parseInt(myValue);

    if (cd>-1){
                con.query("Update Calendario set consecutivo='"+cd+"' where medio  like '%cd%' ");
            }      

 }
 catch(Exception ex){

}

}
于 2013-08-31T00:19:21.950 回答