Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,所以我一直在开发一个聊天程序。它的 WIP 还没有联网。我需要帮助检查我的“输入”变量是否为空。我尝试检查长度是否等于 0,但它仍然让我输入空白消息。我需要这样做,所以我不能输入空白数据,而且它一直不想工作。
if(input.getText().length() == 0) { chat.append(username + ": " + input.getText() + "\n"); input.setText(""); }
应该足够简单。
if (!input.getText().trim().equals("")) { // Do stuff }
您还可以使用名为 .isEmpty 的函数
if(!input.getText().trim().isEmpty()){ //send a text }