Exemplo n.º 1
0
 private void BcancelMouseClicked(
     java.awt.event.MouseEvent evt) { // GEN-FIRST:event_BcancelMouseClicked
   this.dispose();
   FormData fdata = new FormData();
   fdata.setTitle(Tusername.getText());
   fdata.setLocationRelativeTo(null);
   fdata.setVisible(true);
 } // GEN-LAST:event_BcancelMouseClicked
Exemplo n.º 2
0
  private void BsaveMouseClicked(
      java.awt.event.MouseEvent evt) { // GEN-FIRST:event_BsaveMouseClicked

    String UID = Luid.getText();
    String username = Tusername.getText();
    String realname = Trealname.getText();
    String password_text = Tpassword.getText();
    String password;
    password = DigestUtils.md5Hex(password_text);

    String url =
        "http://localhost/uangku/?op=updateuser&uid="
            + UID
            + "&username="******"&password="******"&realname="
            + realname;
    System.out.println(url);
  } // GEN-LAST:event_BsaveMouseClicked