Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/11/2009, 04:03
iven74
 
Fecha de Ingreso: marzo-2009
Mensajes: 26
Antigüedad: 15 años, 9 meses
Puntos: 0
Respuesta: error java.lang.NullPointerException

Catalogo donde se escoje el videojuego a agregar q mediante inputs de typo hidden tiene los valores del videojugo (codigo, descripcion, plataforma, publisher, jugadores, precio, genero e imagen)

Código PHP:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@
taglib uri=" http java sun com/jsp/jstl/core" prefix="c" %>
<%@
taglib uri="http java sun com/jsp/jstl/fmt" prefix="fmt" %>
<%@
taglib uri="http java sun.com/jsp/jstl/sql" prefix="sql" %>
<
c:catch var="error">
    <
sql:query var="resultado" scope="request" dataSource="jdbc/carrito">
       
SELECT FROM videojuegos 
    
</sql:query>
</
c:catch>

<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML  4.01 Transitional//EN"
   "http www w3 org/TR/html4/loose dtd"
>

<
html>
    <
head>
        <
meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <
title>Recolectores Registrados</title>

    </
head>
    <
body>
        <
input type="submit" name="PS3" value="PS3">
        <
h1>Recolectores Registrados</h1>
        <
c:if test="${error != null}">
            <
p><strong><c:out value="${error.localizedMessage}" /> </strong></p>
        </
c:if>
       <
form action="SPCarrito" method="post">
        <
table border="1">
            <
caption>Videojuegos</caption>
            <
thead>
                <
tr>
                    <
th>Codigo</th>
                    <
th>Descripcion</th>
                    <
th>Plataforma</th>
                    <
th>Publisher</th>
                    <
th>Jugadores</th>
                    <
th>Precio</th>
                    <
th>Genero</th>
                    <
th>Imagen</th>
                </
tr>
            </
thead>
            <
tbody>
                <
c:forEach var="renglón" items="${resultado.rows}">
                  <
tr>
                      <
td align="right">
                          <
c:out value="${renglón.codigo}"/></td>
                          <
input type="hidden" name="codigo"   value="${renglon.codigo}">

                       <  
y asi se sigue con los demas.........>
                       
                      </
td>
                      <
td align="right">
                          <
img src="<c:out value="${renglón.imagen}" />" alt="imagen">
                          <
input type="hidden" name="imagen" value="${renglon.imagen}">
                      <
td>
                          <
input type="submit" name="agregar" value="agregar">
                      </
td>
                  </
tr>
                </
c:forEach>
            </
tbody>
        </
table>
        </
form>
    </
body>
</
html

bueno este es mi proble ma espero me puedan ayudar por q no logro encontrar el la solucion de antemano muchas gracias y espero sus respuestas