Код: Выделить всё
public boolean nameControl(String str)
{
if (str.trim().isEmpty()) return false;
if (str.trim().length() == 0) return false;
return true;
}
Подробнее здесь: https://stackoverflow.com/questions/191 ... gth-string
Код: Выделить всё
public boolean nameControl(String str)
{
if (str.trim().isEmpty()) return false;
if (str.trim().length() == 0) return false;
return true;
}