oye si compañero gracias por el aporte pero es que me sale un problema de excepcion aqui te envio un poco de codigo aver si me puede ayudar muchas grax
Código PHP:
private void btnGuardarActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here
int s21=0;
int s22=0;
int s23=0;
int s24=0;
int s25=0;
int s26=0;
int s27=0;
int s28=0;
int s29=0;
int s30=0;
int s31=0;
int s32=0;
int s33=0;
int s34=0;
int s35=0;
int s36=0;
int s37=0;
int s38=0;
int s39=0;
int s40=0;
int s41=0;
int s42=0;
int respuesta;
respuesta=JOptionPane.showConfirmDialog(null, "Confirma Guardar el Registro","Guardar",JOptionPane.YES_NO_OPTION);
//recupero los datos del formulari
Material nuevoContacto=new Material();
//nuevoContacto.setCod_trabajador_cortador(txtCodigo.getText());
/* nuevoContacto.setTipoMaterial(txtMaterial.getText());
nuevoContacto.setNombrematerial(txtNombre.getText());
int n = Integer.parseInt(txtCantidad1.getText());
nuevoContacto.setCantidadMaterial(n);*/
if (tblNumeracion1.getRowCount() > 0)
{
for(int i = 0; i <= tblNumeracion1.getRowCount(); i++)
{
s21 = Integer.parseInt(tblNumeracion1.getValueAt(i, 1).toString());
s22 = Integer.parseInt(tblNumeracion1.getValueAt(i, 2).toString());
s23 = Integer.parseInt(tblNumeracion1.getValueAt(i, 3).toString());
s24 = Integer.parseInt(tblNumeracion1.getValueAt(i, 4).toString());
s25= Integer.parseInt(tblNumeracion1.getValueAt(i, 5).toString());
s26 = Integer.parseInt(tblNumeracion1.getValueAt(i, 6).toString());
s27 = Integer.parseInt(tblNumeracion1.getValueAt(i, 7).toString());
s28 = Integer.parseInt(tblNumeracion1.getValueAt(i, 8).toString());
s29 = Integer.parseInt(tblNumeracion1.getValueAt(i, 9).toString());
s30 = Integer.parseInt(tblNumeracion1.getValueAt(i, 10).toString());
s31 = Integer.parseInt(tblNumeracion1.getValueAt(i, 11).toString());
s32 = Integer.parseInt(tblNumeracion1.getValueAt(i, 12).toString());
s33 = Integer.parseInt(tblNumeracion1.getValueAt(i, 13).toString());
s34 = Integer.parseInt(tblNumeracion1.getValueAt(i, 14).toString());
s35 = Integer.parseInt(tblNumeracion1.getValueAt(i, 15).toString());
s36 = Integer.parseInt(tblNumeracion1.getValueAt(i, 16).toString());
s37 = Integer.parseInt(tblNumeracion1.getValueAt(i, 17).toString());
s38 = Integer.parseInt(tblNumeracion1.getValueAt(i, 18).toString());
s39 = Integer.parseInt(tblNumeracion1.getValueAt(i, 19).toString());
s40= Integer.parseInt(tblNumeracion1.getValueAt(i, 20).toString());
s41 = Integer.parseInt(tblNumeracion1.getValueAt(i, 21).toString());
s42 = Integer.parseInt(tblNumeracion1.getValueAt(i, 22).toString());
nuevoContacto.setS21(s21);
nuevoContacto.setS22(s22);
nuevoContacto.setS23(s23);
nuevoContacto.setS24(s24);
nuevoContacto.setS25(s25);
nuevoContacto.setS26(s26);
nuevoContacto.setS27(s27);
nuevoContacto.setS28(s28);
nuevoContacto.setS29(s29);
nuevoContacto.setS30(s30);
nuevoContacto.setS31(s31);
nuevoContacto.setS32(s32);
nuevoContacto.setS33(s33);
nuevoContacto.setS34(s34);
nuevoContacto.setS35(s35);
nuevoContacto.setS36(s36);
nuevoContacto.setS37(s37);
nuevoContacto.setS38(s38);
nuevoContacto.setS39(s39);
nuevoContacto.setS40(s40);
nuevoContacto.setS41(s41);
nuevoContacto.setS42(s42);
}
}
try {
if(respuesta==JOptionPane.YES_OPTION)
{
nuevoContacto.guardarSuela();
JOptionPane.showMessageDialog(this, "Registro Guardado satisfactoriamente","Operacion Exitosa"
,JOptionPane.INFORMATION_MESSAGE);
}
else if(respuesta==JOptionPane.YES_OPTION && txtMaterial.getText().toUpperCase().equals("Suela"))
{
nuevoContacto.guardarSuela();
JOptionPane.showMessageDialog(this, "Registro Guardado satisfactoriamente","Operacion Exitosa"
,JOptionPane.INFORMATION_MESSAGE);
}
else
{
JOptionPane.showMessageDialog(null, "Borrado cancelado por el usuario");
txtMaterial.setText("");
txtMaterial.setText("");
}
} catch (Exception e) {
JOptionPane.showMessageDialog(this, e.getMessage(),"Error inesperado",JOptionPane.ERROR_MESSAGE);
}
}
es que tengo todos esto tamaños de suela y nesesito que el usuario por cada numero alimente cuantos pares tiene, bueno esto te lo digo para que tengas mas o menos idea para que es ha y estoy trabajando MVC o el mismo OOP gracias compañero adios