I want to repeat a string X times in Android Java.
This, as I understand it, is not a good option:
StringUtils.repeat("abc", 50);
Because it would require
import org.apache.commons.lang.StringUtils; // External libary --- cannot use
So what is the best way to repeat a string X times for Android in Java?