I am very new to Java.
I want to store an image pixels inside a string. But right now if the image has more than 4000 pixels I am not able to store all the characters in a string.
How can I define a string to store more characters?
|
I am very new to Java. I want to store an image pixels inside a string. But right now if the image has more than 4000 pixels I am not able to store all the characters in a string. How can I define a string to store more characters? |
|||||||||||||
|
|
What is the error you get?
Will set 1024 megabyte memory to your java heap size. |
|||||||
|
|
If you really need to store a byte array in string, the proper way to do it is by encoding it in Base64. commons-codec has the |
|||
|
|
|
Strings can have up to 2 billion characters. Perhaps you can explain what happens when you try to store all the bytes of the image in a String? Perhaps you are running into encoding problems as String is not intended for storing binary data. The simplest/safest way to store binary data in a String is to use a literal translation rather than use an encoding which can mange the data.
|
|||
|
|
|
First of all, if your main concern is about storing large amount of characters in a String, as far as I know, the only constraints for it are the String length() method, which returns an int (so you are limited to MAX_INT chars) and you JVM memory, which you can change as pointed by Martin. To do that inside eclipse, you must edit your current run configuration, and you'll find a tab named "Arguments" where you can put all arguments (except the java command itself). About finding the word 'Hello', my bet would be using a char array and write the loops myself. String behaviour in Java may be affected by locale and char encoding, so it could mess up your result. Anyway, what you suggest sounds to me like steganography. There is in fact some literature about techniques for finding wether an image contains data hidden with steganography and extracting it, so maybe you should focus your research on steganalysis (not sure if this is the correct word). Cheers. |
|||
|
|