Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
5answers
1k views

StringBuffer is obsolete?

In the book "Effective Java", Josh Bloch says that StringBuffer is largely obsolete and should be replaced by the non-synchronized implementation 'StringBuilder' . But in my experience, ...
12
votes
5answers
218 views

What is the complexity of this simple piece of code?

I'm pasting this text from an ebook I have. It says the complexity if O(n2) and also gives an explanation for it, but I fail to see how. Question: What is the running time of this code? public ...
10
votes
1answer
159 views

Differences between std::endl and '\n' for streambuffer implementations

I'm currently trying to implement a subclass of stringbuf to allow the buffer to tokenize for specific chars ('\n' in my case) and undertake an action if this char occurs (dump the message to a logger ...
5
votes
7answers
5k views

Java: StringBuffer & Concatenation

I'm using StringBuffer in Java to concat strings together, like so: StringBuffer str = new StringBuffer(); str.append("string value"); I would like to know if there's a method (although I didn't ...
4
votes
11answers
166 views

What is the capacity of a StringBuffer?

When I run this code: StringBuffer name = new StringBuffer("stackoverflow.com"); System.out.println("Length: " + name.length() + ", capacity: " + name.capacity()); it gives output: Length: 17, ...
4
votes
2answers
114 views

Writing multiline JTextArea to txt file

so I Have a JTextArea for user input and then when they click a button it writes it to a text file, I have both setLineWrap and setWrapStyleWord set to true for the JTextArea. I would like to write ...
4
votes
4answers
1k views

Difference between StringBuffer and StringBuilder class

I could get more on the internet and from Sun Java. But needed to get the clear difference with the help of an example? StringBuffer or StringBuilder Whats the difference and when to prefer ...
4
votes
2answers
353 views

Java StringBuffer append allocation

When using StringBuffer in java, I'm wondering how the append function is implemented when it needs to reallocate space. For example, if I append a string longer than the currently allocated space, ...
4
votes
11answers
931 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 created a StringBuffer ...
3
votes
5answers
344 views

Why use StringBuilder? StringBuffer can work with multiple thread as well as one thread?

Suppose our application have only one thread. and we are using StringBuffer then what is the problem? I mean if StringBuffer can handle multiple threads through synchronization, what is the problem ...
3
votes
3answers
1k views

Java regex replaceAll does not replace string

I want the text "REPLACEME" to be replaced with my StringBuffer symbols. When I print symbols, it is a valid string. When I print my query, it still has the text REPLACEME instead of symbols. Why? ...
3
votes
3answers
509 views

remove certain lines from a StringBuffer

A legacy app program has a huge String Buffer (size sometimes upto an Mb) and it is processed sequentially for modifying the contents. I have to implement a change wherein I need to update the string ...
2
votes
0answers
67 views

What can be done to improve a recursive method? [migrated]

So I was experimenting with lists, sets, and finally maps when I spotted a pattern in my code to make it recursive. Now I haven't used recursion much in the past or at work and I was very excited to ...
2
votes
2answers
166 views

fixed-length StringBuffer in java

what is the best practise to hold a stringbuffer length fixed in java ? That is if the fixed value is 10 and stringbuffer holds ABCDEFGHIJ, when we append K that will cause A to be cleared and ...
2
votes
2answers
173 views

StringBuffer/StringBuilder size in java

All, Why is it suggested that the size of the StringBuffer/StringBuilder object should be initialized to a size of 2^{1...n}(Though usually it would be > 64). What would be the advantage/optimization ...
2
votes
4answers
109 views

What's a good way of building up a String given specific start and end locations?

(java 1.5) I have a need to build up a String, in pieces. I'm given a set of (sub)strings, each with a start and end point of where they belong in the final string. Was wondering if there were some ...
2
votes
3answers
1k views

Does the StringBuffer equals method compare content? [closed]

Possible Duplicate: Comparing StringBuffer content with equals StringBuffer s1= new StringBuffer("Test"); StringBuffer s2 = new StringBuffer("Test"); if(s1.equals(s2)) { ...
2
votes
3answers
500 views

What's the equivalent C# method to this basic Java method?

really simple question here (more to confirm my thoughts, than anything)... Java method : [StringBuffer.Delete]1; [1]: http://java.sun.com/j2se/1.4.2/docs/api/java/lang/StringBuffer.html#delete(int, ...
2
votes
3answers
1k views

Correctly over-loading a stringbuf to replace cout in a MATLAB mex file

MathWorks currently doesn't allow you to use cout from a mex file when the MATLAB desktop is open because they have redirected stdout. Their current workaround is providing a function, mexPrintf, ...
1
vote
6answers
59 views

getChars() using StringBuffer

I am new to Java. I executed the below program successfully but I don't understand the output. This is the program. public class StringBufferCharAt { public static void main(String[] args) { ...
1
vote
2answers
243 views

How to convert StringBuffer to InputStream in Java ME?

I'm new in Java and learning Java ME development. I got stuck in this conversion. Please help me to convert StringBuffer to InputStream. Thanks!
1
vote
1answer
199 views

Convert a StringBuffer to a byte Array in Java

How might I, in Java, convert a StringBuffer to a byte array?
1
vote
3answers
383 views

Out of Memory Exception for String, StringBuffer and StringBuilder in Android

I'm facing an Out of Memory Exception while converting a 1.8MB image to bytes and then encrypt, finally converting into a string (length printed in log is 1652328). And then, I'm appending this string ...
1
vote
6answers
145 views

Does “+” use in String concatenation affect efficiency?

I have worked with String, StringBuilder and StringBuffer in java. I thought of this question, while I was thinking from efficiency point of view. Does "+" use in String concatenation affect ...
1
vote
6answers
196 views

What's the use of deleteCharAt() in Java StringBuffer?

We already have delete() in StringBuffer. Why do we need deleteCharAt()? Wouldn't deleteCharAt(n) and delete(n, n+1) do the same?
1
vote
1answer
106 views

Findbugs or PMD rule to detect when StringBuffer should be replaced with StringBuilder

Is there a rule in FindBugs or PMD that will warn when StringBuffer, which is synchronized, can be safely replaced with StringBuilder? For example when a StringBuffer variable reference never escapes ...
1
vote
2answers
138 views

How to force use of StringBuffer instead of StringBuilder by default in javac?

I am trying to compile the CLDC with kvm on linux, I get an error cannot access java.lang.StringBuilder class file for java.lang.StringBuilder not found at the statement: return ...
1
vote
1answer
229 views

deserialize stringBuffer

I have a db varchar field looks like the result of Java StringBuffer serialization: íjava.lang.StringBuffer [many random characters here removed for this question] how do I deserialize it into ...
1
vote
6answers
1k views

Java : Clearing StringBuffer contents

All, I was wondering if clearing a StringBuffer contents using the setLength(0) would make sense. i.e. Is it better to do : while (<some condition>) { stringBufferVariable = new ...
1
vote
6answers
1k views

Adding an Object to Vector loses Reference using Java?

I have a Vector that holds a number of objects. My code uses a loop to add objects to the Vector depending on certain conditions. My question is, when I add the object to the Vector, is the original ...
0
votes
2answers
47 views

StringBuffer going to append path for every method call

i am setting contextPath dynamically by using StringBuffer in java file. Here for every call the path is appending to StringBuffer Object based on number of calls. How can i run below code properly. ...
0
votes
1answer
40 views

Method writing to JTextArea

Currently I have a method that uses a string buffer to write out a string as it runs. The method then returns this string which I then make appear in a JTextArea. Is there another way that I can do ...
0
votes
0answers
31 views

Android: why do both StringBuilder and StringBuffer fail in AsyncTask?

I was trying to define my own scrolling marquee because the one built into Android has limited functionality. Without the extraneous detail I tried to loop the following: ...
0
votes
3answers
198 views

To Convert StringBuffer To A Byte Array In Java

I have a StringBuffer,strbuf=161656070200000000202020202001000000009E52;. I want to convert into a byte array that looks like this: byte[] byte_array=new byte[] ...
0
votes
4answers
62 views

Array List Output

I am currently using an Iterator to output an array list but I want to output it all on one line. I think my best bet would be to use a stringbuffer but does anyone have a more effective method? My ...
0
votes
3answers
94 views

Get the index of the start of a newline in a Stringbuffer

I need to get the starting position of new line when looping through a StringBuffer. Say I have the following document in a stringbuffer "This is a test Test Testing Testing" New lines exist after ...
0
votes
2answers
61 views

Storing in String [closed]

Possible Duplicate: What's the most elegant way to concatenate a list of values with delimiter in Java? I have 3 different words listed in property file in 3 different lines. QWERT ...
0
votes
0answers
81 views

Android reading a 917KB file from web causes memory error?

URL url = new URL(urlStr); URLConnection conn = url.openConnection(); // Get the response BufferedReader rd = new BufferedReader(new ...
0
votes
3answers
143 views

What is more efficient StringBuffer new() or delete(0, sb.length())?

It is often argued that avoiding creating objects (especially in loops) is considered good practice. Then, what is most efficient regarding StringBuffer? StringBuffer sb = new StringBuffer(); ...
0
votes
2answers
129 views

ParseInt raises exception when reading numeric output of StringBuffer

My application reads the output of a command line programs which is always a 0-3 digit number. The data starts as a stringBuffer, is sent .toString and the third step is to convert it to an integer ...
0
votes
0answers
134 views

String vs StringBuffer in java- what are the performance advantages and disadvantages? [closed]

Possible Duplicates: Why to use StringBuffer in Java instead of the string concatenation operator what is the difference between String and StringBuffer in java? I know the basic ...
0
votes
1answer
80 views

Understanding the StrBuff In C

I need to know if this StrBuff struct is supposed to operate like an array. I've looked and looked, and honestly can't tell just due to the pointer syntax - it seems like as an array it could work, ...
0
votes
3answers
44 views

StringBuffer , StringBuidler

StringBuidler sb="ram" StringBuffer sf = "ram" Both throws comile time error . Please explain Why??????
0
votes
3answers
180 views

Add character a place in String

I'm trying to make a method that shall help me to spell world right. After addChar have return its work based on the input "famili", I want the result array to contain the word "familiy". Now the ...
0
votes
1answer
202 views

Java StringBuffer questions: How do I append something in this situation?

package homework5; import java.io.*; import java.util.Arrays; public class Main { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { ...
0
votes
4answers
163 views

Java StringBuffer questions

class MyStringBuffer { //TODO explain: why you would need these data members. private char[] chars; //character storage. private int length; //number of characters used public ...
0
votes
3answers
440 views

J2ME/Java: Referencing StringBuffer through Threads

This question might be long, but I want to provide much information. Overview: I'm creating a Stock Quotes Ticker app for Blackberry. But I'm having problems with my StringBuffer that contains an ...
0
votes
2answers
532 views

New Object Creation in recursive Java program

Java newbie here looking for some help. Here is the code in question: public void generateCodeTable(Node tree, StringBuffer buf) { if (tree != null) { StringBuffer newSB = new ...
0
votes
4answers
2k views

How to get adress of a Java Object?

Is there a way to get address of a Java object? Where the question comes from?: At First, I read properties file and all the data from file was placed into table. Properties file can update. So, I ...
0
votes
4answers
434 views

How is a StringBuffer passing data through voids with no fields in the Class?

Given: Class has no fields, every variable is local. littleString was created by refactoring bigString in Eclipse: public String bigString() { StringBuffer bob = new StringBuffer(); ...

1 2