I have a few really long strings in one class for initializing user information. When I compile in Eclipse, I don't get any errors or warnings, and the resulting .jar runs fine.
Recently, I decided to create an ant build file to use. Whenever I compile the same class with ant, I get the "constant string too long" compile error. I've tried a number of ways to set the java compiler executable in ant to make sure that I'm using the exact same version as in Eclipse.
I'd rather figure out how to get the same successful compile I get in Eclipse in Ant than try to rework the code to dynamically concatenate the strings.
I found I could use the apache commons lang StringUtils.join( Object[] ) method to solve this.
Another trick, if I'm determined to put a long string in the source, is to avoid the compiler detecting it as a constant expression.
This worked for a while, but if you keep going too far the next problem is a stack overflow in the compiler. This describes the same problem and, if you're still determined, how to increase your stack - the problem seems to be the sheer size of the method now. Again this wasn't a problem in Eclipse.
Nothing of above worked for me. I have created one text file with name test.txt and read this text file using below code
Add your string to values/strings.xml than call getResources.getString(R.string.yourstring)
You can try this,