Stringbuilder is a class that provides a convenient and efficient way of working with text data.

learn more… | top users | synonyms

-4
votes
1answer
32 views

Change part of txt file in java [closed]

I've got a txt file with a certain pattern in it (it's a phonebook). I want to change a small part of the file (e.g. a telephone number) but with keeping the rest of the file intact. How can i do it? ...
0
votes
1answer
17 views

Java convert StringBuilder into CharBuffer

I need to send some StringBuilder sb content using a CharBuffer I was hopping for something like CharBuffer.wrap( sb) but cannot find any elegant way Before settling for brute force, Is there a neat ...
2
votes
2answers
33 views

How to get the content of an input stream in reverse order?

I am using a txt file for my level desing. I use the below to take the contents and convert to string buffer, then iterate through the lines to generate my game objects. The the problem is that it ...
-1
votes
3answers
63 views

Which class to use for this static method, StringBuffer or StringBuilder?

For the following code, which class should I use in a static method, StringBuilder or StringBuffer? Based on the API, StringBuffer is thread-safe, but StringBuilder is not. public static String ...
5
votes
4answers
111 views

Imagine a real concurrent scenario where StringBuffer should be used than StringBuilder?

I know the difference between StringBuffer and StringBuilder. read here! And generally, as the javadoc says, Where possible, it is recommended that this class be used in preference to ...
0
votes
1answer
23 views

Best/fastest way to copy over large amounts of RTF data to a RichTextBox?

So I do a ton of RTF manipulations in a StringBuilder and that works great, its in a loop and takes like 0.02 seconds even for a ton of results. So now that I have the RTF data I want and I need to ...
0
votes
3answers
73 views

put a <br /> tag after some text

I have a variable str which is having some text. I just show this text on the my UI. But I have a condition, suppose this variable is having 5oo words, so I need to put a tag after every 50 ...
1
vote
1answer
45 views

Insert multiple words to a String issue

I want insert multiple words in a String, But offset is relative to the original String: StringBuffer sb = new StringBuffer("abcdefghijk"); sb.insert(3,"123"); sb.insert(5,"456"); ...
0
votes
1answer
35 views

Encode a string with accents and money symbols and returns a FileStreamReturn(MemoryStream) MVC

I have this code: StringBuilder output = new StringBuilder(); output.AppendLine("Saldo a disposición: 23.15€"); [...] System.Text.UnicodeEncoding en = new UnicodeEncoding(); byte[] byteArray = ...
5
votes
4answers
80 views

string.replace vs StringBuilder.replace for memory [duplicate]

I have downloaded a stream as a byte[] 'raw' that is about 36MB. I then convert that into a string with string temp = System.Text.Encoding.UTF8.GetString(raw) Then I need to replace all "\n" with ...
0
votes
2answers
62 views

StringBuilder.append() causes java.lang.NullPointerException

I'm experiencing a strange issue using the append() method of StringBuilder class; here is the method: public StringBuilder toStringBuilder(byte[] b) { StringBuilder s = new StringBuilder(); ...
0
votes
1answer
22 views

Save StringBuilder contents into a SQL DB field

I have some text in a String Builder Object in my ASP.NET page, I want to save it into a field in an SQL Server database. I am taking varBinary(max) for that, but not able to save it. Please tell me ...
0
votes
3answers
53 views

Replacing a substring will only work in the last letter? why?

I'm new to programming so I wasn't really sure how to title this, but I'm trying to replace letters in a string builder object by comparing it to a strings Substrings but it will only work with the ...
-6
votes
0answers
52 views

StringBuilder append very slow even it called only eight times [closed]

This StringBuilder used in Java to generate HTML file to write response. In a loop it call append method. Any way to speed up this. This snapshot is taken using visualVM.
1
vote
1answer
104 views

export to pdf using itextsharp

I have a .aspx page in which I have a panel and some controls and one gridview. I am trying to take the print of that panel, but the downloaded pdf is empty. I don't know why, could someone explain ...
0
votes
0answers
31 views

String Manipulation Inconsistency

This is a more general question. I am reading a document and saving its contents into a string variable. The resulting variable contains approximately 1 million characters (no cleansing). My code ...
1
vote
2answers
35 views

Finding more then one occurrence of a letter in a StringBuilder Object

I'm trying to create a hangman program... along with other issues I can't seem to find or create a method for Finding more then one occurrence of a letter and replace all found occurrences. I have ...
23
votes
3answers
305 views

C# Differences between operator ==, StringBuilder.Equals, Object.Equals and Object.ReferenceEquals

I have a doubt regarding Object.Equals and Equals(object). I am giving my sample code below. class Program { static void Main(string[] args) { var sb1 = new StringBuilder("Food"); ...
-2
votes
2answers
91 views

Should I use append line or +=

When adding text to a string should I use : var myStringBuilder = new StringBuilder(); myStringBuilder.AppendLine("some text"); or var myString = ""; myString += ("some text"); and why ?
1
vote
3answers
106 views

StringBuilder.AppendLine() does not make a new line

I am generating an email when an error occurs. I am using StringBuilder.AppendLine() and StringBuilder.AppendLine(String) to build up the body of the email, however the body of my email appears as one ...
0
votes
0answers
5 views

Find right string for frequency from a host of input values using regex

I have a input frequency value coming from multiple sources along with the model name of electrical equipment. I need to strip out the frquency value from the model name. Looking for a regex solution ...
0
votes
1answer
19 views

check if certain char sequences exists in a string builder and remove it

in java, I am trying to find if a given string has one of the many sub strings using multiple ORs in a single If condition and if any of the sub string exists, remove it. I am not sure how to do it. ...
1
vote
1answer
121 views

System.OutOfMemoryException at System.Text.StringBuilder.ToString() with Excel XML String

So recently I've been working on code in C#/ASP.NET that throws an error during selections of large parameters: Exception of type 'System.OutOfMemoryException' was thrown. at ...
0
votes
1answer
103 views

reading files in subfolders in directory c# streamreader

I need to find all files and all subfolders in a directory. I am omitting the FtpWebRequest. Here is what I have written so far: private string[] fileList () { StringBuilder result = new ...
0
votes
0answers
20 views

export image to workheet with stringbuilder C#

I want to export a image( chart) to worksheet with string builder can you give me exemple for exporting image to file excel or speek me for the method to use thx help me please
1
vote
4answers
139 views

remove first line from string builder / string c#

Okay so I'm trying to make a 'console' like text box within a form, however once you reach the bottom, instaid of being able to scroll up, it will just delete the top line, Im having some ...
0
votes
1answer
50 views

There was an error parsing the query. [ Token line number = 1 …]

I tried using stringbuilder to make the process simpler but it is showing error and I don't understand whether the problem is with the stringbuilder or code syntax. code: if ...
0
votes
2answers
99 views

StringBuilder: ArrayIndexOutOfBoundsException

We're experiencing a strange issue with WebSphere 7/ IBM JDK 6, where one of the nodes has some initialization issue. We have some code which calls InitialContext.lookup and on this node we're ...
0
votes
4answers
77 views

Building SQL IN statement from listbox control

I'm trying to build a SQL query using StringBuilder and I've become stuck trying to do part of the WHERE clause. I have a list box with a bunch of values and allows multiple selection. I need to ...
0
votes
3answers
120 views

Are Strings *really* immutable in Java?

Everyone knows that Java's String object is immutable which essentially means that if you take String object a and concatenate it with another String object, say b, a totally new String object is ...
1
vote
1answer
85 views

Android String Builder reading per line

I need to read a line from a string builder. The problem is when I execute .toString()... It will become a single string which I don't know how to get a line from it. I've read a question similar to ...
0
votes
3answers
55 views

What are the best practices for building strings in the given situation with StringBuilder?

We are constructing a large block of text and are using a single instance of StringBuilder. We have broken up the block of text into subsections (5) and assigned each a corresponding method. Each ...
1
vote
1answer
137 views

Convert the contents of a byte array to string

I have a byte array that contains the data of an uploaded file which happens to be a Resume of an employee(.doc file). I did it with the help of the following lines of code AppSettingsReader rd = ...
0
votes
2answers
96 views

Render StringBuilder HTML in MVC 3 View

In my view I am looping through my model and building html to display on the page. I am building this html with stringbuilder and if/else conditions. I have tried to render this string as html but I ...
0
votes
1answer
72 views

Comparing two strings string builder

I'm generating two string lines using string builder and I want to compare that generated string with string at exact location (last two lines) inside my txt file. StringBuilder s = new ...
0
votes
4answers
113 views

How can i write this java code in C#

i have an array of integer called digits public String toDecimalString() { StringBuilder b = new StringBuilder(9 * digits.length); Formatter f = new Formatter(b); ...
0
votes
2answers
67 views

why it's NOT safe to replace a StringBuffer object with a StringBuilder in java version earlier than 1.5

Good evening, i read these statement in a blog it's NOT safe to replace a StringBuffer object with a StringBuilder in java version earlier than 1.5 and it seems to be a fact, but there's no apparent ...
2
votes
3answers
52 views

Why does the mutable StringBuilder behave like the immutable string when a reference is changed?

The "C# 4.0 IN A NUTSHELL" 4th edition book by the Albaharis states on page 249: ". . . calling object.ReferenceEquals guarantees normal referential equality." So, I decided to test this out. First ...
0
votes
1answer
154 views

String Builder Append function cutting off first character

i'm using stringbuilder in a project here with nested loops and my append statement seems to cut the first character value off of only one of my column values. Here is the loops For Each dr As ...
0
votes
3answers
94 views

how to append values to a StringBuilder array

I am parsing a grid coordinate in degree decimal format. I'd like to store pattern matches in a StringBuilder array for further manipulation. However, I am get a null pointer when calling append() ...
3
votes
3answers
91 views

Does StringBuilder.toString retain the built string?

I'm creating a StringBuilder to collect strings that I periodically flush to a server. If the flush fails, I want to keep the strings to try again next time, although in the mean time I might get ...
1
vote
3answers
83 views

Setting a StringBuilder

I have 3 buttons: "Q", "W" and "E". When clicked they should append their letter to a StringBuilder. Like this: StringBuilder s = new StringBuilder(); (When "Q" button is clicked): s.append("q"); ...
0
votes
0answers
317 views

Passing values from dynamically created textbox to stringbuilder

I'm new to dynamically created controls. I'm trying to create a program in vb.net that will format values in a stringbuilder from dynamically created textboxs. This is the code I've been playing ...
0
votes
1answer
146 views

Java StringWriter StringBuilder exception at toString

Ok.. this is totally weird. I'm trying to make a http request in android. It works and I can 'build' a string using StringWriter but the code throws an exception at writer.toString(). It makes no ...
0
votes
1answer
76 views

Append the String using StringBuilder [closed]

I am trying to get all the items that I have selected in Spinner using the layout. I am creating the Spinner dynamically and adding the items to Spinner dynamically so that is the reason I am using ...
0
votes
1answer
48 views

How is best way generate a short name e.g value of property in database

I have pure Java question altough i work with JSF stuff,managed beans,DB etc.but on this doesn't matter. So i want display on of my row in DataTable a short name of my property which is in database ...
1
vote
3answers
108 views

StringBuffer setLength vs substring

To trim to a length in stringbuilder. What should I use? StringBuilder sb = new StringBuilder("203253/62331066 "); StringBuilder sb1 = new StringBuilder("203253/62331066 ...
0
votes
1answer
61 views

Why is my file not being written to?

I'm creating a "debug/log" textfile to try to see which "background threads" are running when the app I'm working on hangs. First, as they're activated, I'm storing them in a StringBuilder: public ...
2
votes
7answers
70 views

Java - how many string concat's should prompt the use of StringBuilder? [duplicate]

I understand that StringBuilder should be used for concatenating multiple strings rather than using +. My question is what is the cut off point? I have been told that if concatenating 4 or more ...
0
votes
2answers
76 views

java: String concat in bytecode converted to StringBuilder

I reviewed my compiled code with javac command line and I saw whenever I used String concatenation with + operator, compiled code replaced with StringBuilder's append() method. now I think using ...

1 2 3 4 5 12