Código Javascript
:
Ver originalfor(int i = 0; i < t_comp.getRowCount(); i++){
**String Cantidad = t_comp.getValueAt(i, 0).toString();**
String Codigo = t_comp.getValueAt(i, 1).toString();
String Descripcion= t_comp.getValueAt(i, 2).toString();
String Precio_Unitario= t_comp.getValueAt(i, 3).toString();
String Subtotal= t_comp.getValueAt(i, 4).toString();
this.insertarDatos(Cantidad, Codigo, Descripcion, Precio_Unitario,Subtotal);
Exactamente en la linea que tiene los dos asteriscos, espero tu ayuda, Gracias.