0
votes
7answers
83 views
.NET strings and reference type parameters
I was wondering if any one could explain this code to me...
public void SomeMethod()
{
StringBuilder sb = new StringBuilder();
AppendFoo(sb);
String foo = sb.ToString( …
1
vote
3answers
83 views
interesting OutOfMemoryException with StringBuilder
I have the need to continuously build large strings in a loop and save them to database wich currently occasioanlly yields an OutOfMemoryException.
What is basically going on her …
0
votes
4answers
91 views
getting better performance appending strings than going through standard Java stringbuilder.append
Hi,
as part of the process of populating a search engine, I populate a Berekely-DB value-store as well. This process is repeated each night and at the moment +/- 60% of the total …
0
votes
3answers
22 views
Hibernate: OutOfMemoryError persisting Blob when printing log message
I have a Hibernate Entity:
@Entity
class Foo {
//...
@Lob
public byte[] getBytes() { return bytes; }
//....
}
My VM is configured with a maximum heap size of 512 …
1
vote
2answers
93 views
LINQ to append to a StringBuilder from a String[]
I've got a String array that I'm wanting to add to a string builder by way of LINQ.
What I'm basically trying to say is "For each item in this array, append a line to this StringB …
0
votes
6answers
159 views
Dumping a Java StringBuilder to File
What is the most effecient/elegant way of dumping a StringBuilder to a text file?
you can go:
outputStream.write(stringBuilder.toString().getBytes());
But is this efficient for …
0
votes
6answers
53 views
String / StringBuilder what volume do you use one over the other
It's Friday refactor time!!!
I have an object that I use to generate SQL statements.
oDb.From is set once. Then meta data may add join(s) over time till we combine it all and p …
4
votes
11answers
251 views
Strings are immutable - that means I should never use += and only StringBuffer?
Strings are immutable, meaning, once they have been created they cannot be changed.
So, does this mean that it would take more memory if you append things with += than if you crea …
2
votes
5answers
280 views
When and Why Should I Use TStringBuilder?
I converted my program from Delphi 4 to Delphi 2009 a year ago, mainly to make the jump to Unicode, but also to gain the benefits of all those years of Delphi improvements.
My cod …
0
votes
4answers
94 views
differences between StringBuilder in Java and C#
I am converting Java code to C#. The StringBuilder class in Java seems to have many more methods than the C# one. I am interested in (say) the Java functionality
sb.indexOf(s);
sb …
2
votes
11answers
440 views
StringBuilder vs String concatenation in toString() in Java
Given the 2 toString() implementations below, which is prefered
public String toString(){
return "{a:"+ a + ", b:" + b + ", c: " + c +"}";
}
or
public String toString(){
…
0
votes
2answers
91 views
Why doesn’t StringBuilder have IndexOf method?
I understand that I can call ToString().IndexOf(...), but I don't want to create an extra string. I understand that I can write search routine manually. I just want to know, why do …
2
votes
3answers
200 views
ASP.NET HTML control with clean output?
I am developing an ASP.NET web application at work, and I keep running into the same issue:
Sometimes I want to write HTML to the page from the code-behind. For example, I have a …
1
vote
3answers
142 views
How do I port an extension in VB.NET to C#?
Hello SO:
I wrote an extension in VB.NET for StringBuilder to add a AppendFormattedLine method (so I would not have to use one of the arguments for a new line character):
Imports …
0
votes
2answers
106 views
Accessing the same string(StringBuilder) using multi-thread.
Hi, My problem is if I use multi-thread on the same string sometime
the string won't get replace.(I wrote this on notepad so syntax may be
wrong)
using System.Thread ... Other …
