Ver Mensaje Individual
  #8 (permalink)  
Antiguo 06/10/2010, 10:00
Avatar de sanchezg
sanchezg
 
Fecha de Ingreso: abril-2009
Mensajes: 76
Antigüedad: 15 años, 8 meses
Puntos: 0
Respuesta: int en lugar de String

no se si deba meter ambos for en el primero :s no se como seria ojala puedan ayudarme gracias

Código HTML:
Ver original
  1. if (request.getParameterValues("clave").length > 0 ) {
  2.     SQLString = "SELECT * FROM conceptos WHERE clave IN (";
  3.     for (String s : request.getParameterValues("clave")) {
  4.         SQLString += "\'" + s + "\', ";
  5.    
  6.     }
  7.     SQLString = SQLString.substring(0, SQLString.lastIndexOf(',')) + ")";
  8. }}

Código HTML:
Ver original
  1. String [] valores = request.getParameterValues("cantidad");
  2. for (int i = 0; i < valores.length; i++)
  3. {
  4.     float precio = tabla.getFloat(i);
  5.     int cantidad = Integer.parseInt(valores[i]);
  6.     float total = precio * cantidad;
  7. }

Última edición por sanchezg; 06/10/2010 a las 11:13