How to Send SMS' Using Java and Netbeans

Поділитися
Вставка
  • Опубліковано 26 жов 2024

КОМЕНТАРІ • 53

  • @GeorgeArgyrousis
    @GeorgeArgyrousis 7 років тому

    The sms application was actually something I have been searching for a while. Haven't seen a tutorial from you for a long time, nice to have you back :)

  • @st9761
    @st9761 7 років тому

    Hi! Welcome back! So glad to see an update from you so soon after I subscribed, been watching your advanced NetBeans series!

  • @lukeholland8083
    @lukeholland8083 7 років тому

    Welcome back, been a long time since you've posted.

  • @abhisheksharma1460
    @abhisheksharma1460 7 років тому

    nice to see you back sir

  • @rafiezikry8559
    @rafiezikry8559 4 роки тому +1

    hey, does this tutorial still work right now... i'm just asking to be sure, because i want to use bulk sms for my college project

  • @dinozoe1795
    @dinozoe1795 7 років тому

    Yooooooo Welcome back again

  • @victoruzochukwu9366
    @victoruzochukwu9366 7 років тому

    welcome back buddy!

  • @ImtiyazAhmad-ex7nk
    @ImtiyazAhmad-ex7nk 6 років тому +1

    Thank you! Thank you! Thank you! Thank you!

    • @javazantech
      @javazantech 5 років тому

      hello brother Did you get the project done? If you can, you can send me the source code and the library.

    • @javazantech
      @javazantech 5 років тому

      Please

  • @shivamrajput3616
    @shivamrajput3616 5 років тому

    thank you Please post more often

  • @issaloubani5583
    @issaloubani5583 7 років тому

    Professionals as usual :)

  • @FADEDElement
    @FADEDElement 5 років тому

    can you make a series on how to make a website similar to yours please i wanna make one for all of my programming projects

  • @GerryJrGohil
    @GerryJrGohil 6 років тому

    Nice tutorial sir, I wanna ask if this BulkSms can receive outbound sms from the client into your java program.

  • @javazantech
    @javazantech 5 років тому

    Hello Friend It is possible to make a JAVA application that sends the link from a google maps location to WhatsApp the same as sending SMS to a phone. Example I have a WhatsApp phone list and I select the number and send it to the corresponding number.

  • @Nabeelkhan-lk2tb
    @Nabeelkhan-lk2tb 4 роки тому

    Bulk sms is free for all time

  • @jpiyot1355
    @jpiyot1355 5 років тому

    i cant find that jar file you've downloaded. where can i download that file?

  • @taahirnarker7089
    @taahirnarker7089 7 років тому +2

    Please post more often

  • @7thousandnumbers
    @7thousandnumbers 7 років тому

    hey do you think you can continue on the MP3 Player Widget cause I want to see a part 2

  • @olubolaolunuga3367
    @olubolaolunuga3367 5 років тому

    good stuff...

  • @MubashiraMQ
    @MubashiraMQ 2 роки тому

    "The Army and people of Pakistan took bold steps to save Islam and Pakistan and then people who really love Pakistan started to run it and we cleared Pakistan from all forms of disbelief.
    And such a system of justice was formed that the rest of the world became surprised and such a system of government was formed that Pakistan started to progress and also started to prepare for the war." #MuhammadQasimDreams

  • @davebarasona5533
    @davebarasona5533 5 років тому +1

    how can i purchase more credits?

  • @FarasFoodWorld
    @FarasFoodWorld 6 років тому

    Thankyou so much...!!!

  • @shantalmaharaj901
    @shantalmaharaj901 7 років тому

    Great video babe :)

  • @pwucdceccalamba6057
    @pwucdceccalamba6057 5 років тому

    hello sir i want to learn how to send multiple

  • @SukhwinderSingh-ld3tj
    @SukhwinderSingh-ld3tj 6 років тому

    hello sir,
    its running fine i mean without any error but text message has not been sent to my no.
    i tried using code as +91 and also without +
    kindly guide me here what could be the problrm .
    also my credits have been reduced for every try i made.

  • @rishabhdevgupta6007
    @rishabhdevgupta6007 6 років тому

    My application is doing nothing. I've almost copied the above code, except the details of the message(obviously). Please help.

  • @rochdibahri5866
    @rochdibahri5866 4 роки тому

    pleaaase, how can i downloads bulk_sms_labrary.jar ???!!!

  • @sandipankar8752
    @sandipankar8752 7 років тому

    Please advise me some names of books to learn NetBeans.

  • @abdishakourawale8298
    @abdishakourawale8298 7 років тому

    Nice tutorial, but how can i show the message status in message box (i.e. JOptionPane), i tried it but the message result is appearing at the console line. thanks

    • @abdishakourawale8298
      @abdishakourawale8298 7 років тому

      Ok sir, but i want to display the result of the transaction whether the message was successfully sent or failed, so how.

  • @charlesngazaki9047
    @charlesngazaki9047 7 років тому

    Hello, could be possible to implement with JFrame ? reading contact number and message from jtextfields

  • @engahmed3292
    @engahmed3292 5 років тому

    how can used Silent Installation ?

  • @legendarydavid4409
    @legendarydavid4409 6 років тому

    How can create a management system using netbeans

  • @jayantagarwal6339
    @jayantagarwal6339 5 років тому

    Build successful, but SMS wasn't received in my mobile

  • @ismailsaleh8535
    @ismailsaleh8535 5 років тому

    how to insert photos into netbeans and save them in a data base ? please I'm still a beginner master

    • @kelvinsankale
      @kelvinsankale 5 років тому

      else if(evt.getActionCommand()=="save"){
      //save function
      if(pupilImage == null){
      JOptionPane.showMessageDialog(null,"PLEASE CHOOSE PICTURE","Error",JOptionPane.WARNING_MESSAGE);
      JFileChooser fileChooser = new JFileChooser();
      fileChooser.showOpenDialog(null);
      File selectedFile = fileChooser.getSelectedFile();
      fileName = selectedFile.getAbsolutePath();
      ImageIcon imageIcon = new ImageIcon(new ImageIcon(fileName).getImage().getScaledInstance(lblPupilPicture.getWidth(), lblPupilPicture.getHeight(), Image.SCALE_SMOOTH));
      lblPupilPicture.setIcon(imageIcon);
      try{
      File image = new File(fileName);
      FileInputStream fis = new FileInputStream(image);
      ByteArrayOutputStream bos = new ByteArrayOutputStream();
      byte[] buf = new byte[1024];
      for(int readNum; (readNum=fis.read(buf))!=-1;){
      bos.write(buf,0,readNum);
      }
      pupilImage = bos.toByteArray();
      }
      catch(Exception e){
      JOptionPane.showMessageDialog(null, e);
      }
      }
      else{

      Connection myConn;
      Statement stmt;
      String sql_pupils;
      ResultSet rs;
      try{
      sql_pupils = "INSERT INTO pupils (date, fname, lname, dob, gender, religion, classId, transportRate, activeStatus, upiNo, admissionNo, pupilPicture) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)";
      Class.forName("com.mysql.jdbc.Driver");
      myConn = DriverManager.getConnection("jdbc:mysql:///database_name","root","");
      stmt = myConn.createStatement();
      PreparedStatement pst = myConn.prepareStatement(sql_pupils);
      // InputStream is = new FileInputStream(new File(s));
      pst.setString(1, txtDate.getText());
      pst.setString(2, txtFirstName.getText());
      pst.setString(3, txtLastName.getText());
      pst.setString(4, txtDob.getText());
      pst.setString(5, ""+genderCombo.getSelectedItem());
      pst.setString(6, ""+religionCombo.getSelectedItem());
      pst.setString(7, ""+classIdBox.getSelectedIndex());
      pst.setString(8, txtTransportAmount.getText());
      pst.setString(9, ""+activeStatusBox.getSelectedItem());
      pst.setString(10, txtUpiNo.getText());
      pst.setString(11, txtAdmissionNo.getText());
      pst.setBytes(12, pupilImage);
      pst.executeUpdate();
      System.out.println("SQL: " + sql_pupils);
      JOptionPane.showMessageDialog(null,"ENTRY SAVE SUCCESSFUL","Saved",JOptionPane.WARNING_MESSAGE);
      }
      catch(ClassNotFoundException e){
      System.out.println("Driver not found " + e.getMessage());
      JOptionPane.showMessageDialog(null,"DRIVER NOT FOUND","Error",JOptionPane.WARNING_MESSAGE);
      }
      catch(SQLException e){
      System.out.println("Database connection Error: " + e.getMessage());
      JOptionPane.showMessageDialog(null,"INCORRECT FORMAT","Error",JOptionPane.WARNING_MESSAGE);
      }
      Pupils p = new Pupils();
      dispose();
      }
      }
      else if (evt.getActionCommand()=="clear"){
      new Pupils();
      dispose();
      }
      //copy this code to your IDE and study it and make it work for you

  • @actualprogramming
    @actualprogramming 5 років тому

    In one of the video, there is gadget in the background, where it shows your computer status. Like IP address and all.
    Can you make a tutorial on that, Please.

  • @mooraph4822
    @mooraph4822 4 роки тому

    I have the same problem like the others
    23|invalid credentials (username was: emmanski09)|
    How to fix this? My credentials are true and I can log in to this account

  • @shahzaibaejaz3207
    @shahzaibaejaz3207 7 років тому

    Thank you so much for this very excellent video my sms successfully send
    thanks a lot of once again

  • @charlesngazaki9047
    @charlesngazaki9047 7 років тому

    please share link of resource package

  • @anjikasingh215
    @anjikasingh215 7 років тому

    "Exception in thread "AWT-EventQueue-0" java.lang.UnsupportedClassVersionError: com/teknikindustries/bulksms/SMS : Unsupported major.minor version 52.0" Giving This error plz help

  • @amonthedon5951
    @amonthedon5951 7 років тому

    please upload more!!!!

  • @mbuguanjane5612
    @mbuguanjane5612 7 років тому

    how can one receive sms from phone to computer

  • @charlesngazaki9047
    @charlesngazaki9047 7 років тому

    where to download jar file ?

  • @robertosambuenajr.810
    @robertosambuenajr.810 7 років тому

    23|invalid credentials (username was: berto0223)| how to fix this? Thanks in advance :)

  • @caalumynum
    @caalumynum 7 років тому

    Finally

  • @mohdsaiffarooqui5157
    @mohdsaiffarooqui5157 7 років тому

    getting error of invalid username

  • @KastilIslam
    @KastilIslam 2 роки тому

    But the storm kept on spreading, it even spread to countries such as Syria, Egypt, Libya, Sudan and many more. It spread so much destruction that I can't even explain in words.
    Millions were dying instantly. It was so horrible I wish it would never happen like this. I said to myself what exactly did Israel do to cause such a huge storm. What was in that building that Arab countries were angry about. And when will this horrible storm stop?
    🌟please find more about these important dreams of Muhammad Qasim. We are the last generation of this ummah

  • @treviswamuthenya6111
    @treviswamuthenya6111 5 років тому

    If I had the chance of giving you 2 likes I would.