NeoTechni Well-Known Member Licensed User Longtime User Mar 4, 2012 #1 Exception class java.lang.OutOfMemoryError Source method AbstractStringBuilder.enlargeBuffer() Click to expand... So my question is, what is the limitation on the stringbuilder? Cause I can just dump it to file when it's full. I'd just like to know when that is.
Exception class java.lang.OutOfMemoryError Source method AbstractStringBuilder.enlargeBuffer() Click to expand... So my question is, what is the limitation on the stringbuilder? Cause I can just dump it to file when it's full. I'd just like to know when that is.
Erel B4X founder Staff member Licensed User Longtime User Mar 4, 2012 #2 There is no hard limit. The only limit is the available process memory. What are you doing that requires such a huge StringBuilder? Upvote 0
There is no hard limit. The only limit is the available process memory. What are you doing that requires such a huge StringBuilder?
NeoTechni Well-Known Member Licensed User Longtime User Mar 4, 2012 #3 I'm parsing memory-alpha.org webpages and converting the HTML. I don't know which pages people are overflowing on cause no one knows how to file a proper bug report. I switched to using a textwriter object, then reading the output at the end. Upvote 0
I'm parsing memory-alpha.org webpages and converting the HTML. I don't know which pages people are overflowing on cause no one knows how to file a proper bug report. I switched to using a textwriter object, then reading the output at the end.