Variables cannot be resolved

前端 未结 3 1803
难免孤独
难免孤独 2021-01-21 15:07

I am making my first Java program (In hopes to master it in the next century) and have ran into some issues. When I try to create a string with a combination of text and previou

3条回答
  •  死守一世寂寞
    2021-01-21 15:37

    The variables data and input which you've used in the String emailBody is no where declared and intilized.

    also

     if(allowEmails) {
     }
    

    is enough rather than

    if(allowEmails == true)
    

提交回复
热议问题