Se Que Ese Error Se Presenta Porque Intento Acceder A Una Posicion Inexistente En Un Arreglo. Ahi Es Donde No Entiendo Porque La Posicion Que Estoy Intentando Acceder Si Existe.
Lo Que Yo Hago Es Hacer Una Consulta A Mi Base De Datos, Tomo Uno De Los Resultados y Simplemente Quiero Mostrarlo Y Ahi es Donde Se Presenta El Error:
Cita:
Miren El Codigo:HTTP Status 500 -
--------------------------------------------------------------------------------
type Exception report
message
descriptionThe server encountered an internal error () that prevented it from fulfilling this request.
exception
java.lang.ArrayIndexOutOfBoundsException: 1
note The full stack traces of the exception and its root causes are available in the GlassFish/v3 logs.
--------------------------------------------------------------------------------
GlassFish/v3
--------------------------------------------------------------------------------
type Exception report
message
descriptionThe server encountered an internal error () that prevented it from fulfilling this request.
exception
java.lang.ArrayIndexOutOfBoundsException: 1
note The full stack traces of the exception and its root causes are available in the GlassFish/v3 logs.
--------------------------------------------------------------------------------
GlassFish/v3
Código Java:
La Verdad Yo No Veo Ningun Problema. Espero Y Me Puedan Colaborar Diciendome Que me Genera El Error Y Como Solucionarlo.Ver original
try { if(req.getParameter("B1")!=null) { String q="select * from simulador_ecaes.pregunta where Id_Componente='"+id+"'order by rand()limit 0,1"; try { bd.valida = bd.ingreso.executeQuery(q); while(bd.valida.next()) { pag.println(pre); } } }
Muchas Gracias