Check if the content of text area is empty (java)











up vote
0
down vote

favorite












I am trying to read data from a textarea (JTextArea) and store the contents into a table(MySQL). I don't want the INSERT query to execute if the textarea is empty or has a newline without any text. I tried the following code but it does not work. Could someone help me out. Thanks.



String data=todo_area.getText();//read contents of text area into 'data'
String newline = System.getProperty("line.separator");
boolean hasNewline = data.contains(newline);

if (data == null || !data.trim().equals("")||hasNewline==false)
{
//INSERT query
}









share|improve this question
























  • if (data == null || data.trim().length() == 0 || !hasNewLine) should do the trick
    – MadProgrammer
    Nov 19 '12 at 5:20

















up vote
0
down vote

favorite












I am trying to read data from a textarea (JTextArea) and store the contents into a table(MySQL). I don't want the INSERT query to execute if the textarea is empty or has a newline without any text. I tried the following code but it does not work. Could someone help me out. Thanks.



String data=todo_area.getText();//read contents of text area into 'data'
String newline = System.getProperty("line.separator");
boolean hasNewline = data.contains(newline);

if (data == null || !data.trim().equals("")||hasNewline==false)
{
//INSERT query
}









share|improve this question
























  • if (data == null || data.trim().length() == 0 || !hasNewLine) should do the trick
    – MadProgrammer
    Nov 19 '12 at 5:20















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am trying to read data from a textarea (JTextArea) and store the contents into a table(MySQL). I don't want the INSERT query to execute if the textarea is empty or has a newline without any text. I tried the following code but it does not work. Could someone help me out. Thanks.



String data=todo_area.getText();//read contents of text area into 'data'
String newline = System.getProperty("line.separator");
boolean hasNewline = data.contains(newline);

if (data == null || !data.trim().equals("")||hasNewline==false)
{
//INSERT query
}









share|improve this question















I am trying to read data from a textarea (JTextArea) and store the contents into a table(MySQL). I don't want the INSERT query to execute if the textarea is empty or has a newline without any text. I tried the following code but it does not work. Could someone help me out. Thanks.



String data=todo_area.getText();//read contents of text area into 'data'
String newline = System.getProperty("line.separator");
boolean hasNewline = data.contains(newline);

if (data == null || !data.trim().equals("")||hasNewline==false)
{
//INSERT query
}






java






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jun 28 '17 at 6:15









user2025187

2,6083923




2,6083923










asked Nov 19 '12 at 5:18









user1748910

453512




453512












  • if (data == null || data.trim().length() == 0 || !hasNewLine) should do the trick
    – MadProgrammer
    Nov 19 '12 at 5:20




















  • if (data == null || data.trim().length() == 0 || !hasNewLine) should do the trick
    – MadProgrammer
    Nov 19 '12 at 5:20


















if (data == null || data.trim().length() == 0 || !hasNewLine) should do the trick
– MadProgrammer
Nov 19 '12 at 5:20






if (data == null || data.trim().length() == 0 || !hasNewLine) should do the trick
– MadProgrammer
Nov 19 '12 at 5:20














3 Answers
3






active

oldest

votes

















up vote
3
down vote



accepted










String data=todo_area.getText().trim(); //read contents of text area into 'data'
if(!data.equals("")) {
// code
}





share|improve this answer






























    up vote
    3
    down vote













    For me it's enough using this condition:



    if ((data.trim().length() > 0) && (!hasNewline)){
    //do the insert
    }


    data.trim().length() > 0 is enough to make sure that the input is not null.






    share|improve this answer






























      up vote
      1
      down vote













      Try using this condition for you check:



      if ((data != null) && (data.trim().length() > 0 )  && (!hasNewline)){
      //do the insert
      }





      share|improve this answer





















        Your Answer






        StackExchange.ifUsing("editor", function () {
        StackExchange.using("externalEditor", function () {
        StackExchange.using("snippets", function () {
        StackExchange.snippets.init();
        });
        });
        }, "code-snippets");

        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "1"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














         

        draft saved


        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f13448067%2fcheck-if-the-content-of-text-area-is-empty-java%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes








        up vote
        3
        down vote



        accepted










        String data=todo_area.getText().trim(); //read contents of text area into 'data'
        if(!data.equals("")) {
        // code
        }





        share|improve this answer



























          up vote
          3
          down vote



          accepted










          String data=todo_area.getText().trim(); //read contents of text area into 'data'
          if(!data.equals("")) {
          // code
          }





          share|improve this answer

























            up vote
            3
            down vote



            accepted







            up vote
            3
            down vote



            accepted






            String data=todo_area.getText().trim(); //read contents of text area into 'data'
            if(!data.equals("")) {
            // code
            }





            share|improve this answer














            String data=todo_area.getText().trim(); //read contents of text area into 'data'
            if(!data.equals("")) {
            // code
            }






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 10 at 20:43









            monir alhussini

            11510




            11510










            answered Nov 19 '12 at 5:21









            Rasel

            14.5k63448




            14.5k63448
























                up vote
                3
                down vote













                For me it's enough using this condition:



                if ((data.trim().length() > 0) && (!hasNewline)){
                //do the insert
                }


                data.trim().length() > 0 is enough to make sure that the input is not null.






                share|improve this answer



























                  up vote
                  3
                  down vote













                  For me it's enough using this condition:



                  if ((data.trim().length() > 0) && (!hasNewline)){
                  //do the insert
                  }


                  data.trim().length() > 0 is enough to make sure that the input is not null.






                  share|improve this answer

























                    up vote
                    3
                    down vote










                    up vote
                    3
                    down vote









                    For me it's enough using this condition:



                    if ((data.trim().length() > 0) && (!hasNewline)){
                    //do the insert
                    }


                    data.trim().length() > 0 is enough to make sure that the input is not null.






                    share|improve this answer














                    For me it's enough using this condition:



                    if ((data.trim().length() > 0) && (!hasNewline)){
                    //do the insert
                    }


                    data.trim().length() > 0 is enough to make sure that the input is not null.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Nov 19 '12 at 9:05









                    stealthyninja

                    9,475103947




                    9,475103947










                    answered Nov 19 '12 at 8:41









                    user1835172

                    391




                    391






















                        up vote
                        1
                        down vote













                        Try using this condition for you check:



                        if ((data != null) && (data.trim().length() > 0 )  && (!hasNewline)){
                        //do the insert
                        }





                        share|improve this answer

























                          up vote
                          1
                          down vote













                          Try using this condition for you check:



                          if ((data != null) && (data.trim().length() > 0 )  && (!hasNewline)){
                          //do the insert
                          }





                          share|improve this answer























                            up vote
                            1
                            down vote










                            up vote
                            1
                            down vote









                            Try using this condition for you check:



                            if ((data != null) && (data.trim().length() > 0 )  && (!hasNewline)){
                            //do the insert
                            }





                            share|improve this answer












                            Try using this condition for you check:



                            if ((data != null) && (data.trim().length() > 0 )  && (!hasNewline)){
                            //do the insert
                            }






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Nov 19 '12 at 5:24









                            Abubakkar

                            12.2k43969




                            12.2k43969






























                                 

                                draft saved


                                draft discarded



















































                                 


                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f13448067%2fcheck-if-the-content-of-text-area-is-empty-java%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                Xamarin.iOS Cant Deploy on Iphone

                                Glorious Revolution

                                Dulmage-Mendelsohn matrix decomposition in Python