I'm using a specific API which has a method "getName()". getName() returns a string. Is it possible to modify that String? There is no modifier method included in the API, and the String getName() returns is private. I cannot modify the API.
|
|
Contrary to prevailing opinion, it is possible to change the contents of a String object on JDK versions 1.5 and newer, but I (and probably everyone else here) would strongly discourage it for many reasons. Strings were never meant to be changed, and they're just not built for it, meaning any attempt to do so will quickly get quite messy. That said, if you need it as an absolute last resort or else the world is going to end kind of thing, here's a bare-bones way to do it:
Make careful note, however, of the other fields in String: offset and count. You'll have to deal with those fields, too, depending on how you change the String's value. Finally, and maybe most importantly, you have to consider what would happen if you modify an interned String. |
||||
|
|
No. Strings are immutable. If there is no setter in the API, you cannot change the contents of |
|||
|
|
|
Strings are immutable in the Java language, meaning it is impossible to modify any If you need to modify the |
|||
|
|
|
Concerning your code everywhere where you want to use X.getName() from the specific API you can use a proxy class Y that uses X.getName() to do all your changes in Y.getName(). That makes it easy if one day the specific API changes (you only have to change one place). To change X.getName() behaviour within the specific API you can use some bytecode manipulation (ex. http://www.csg.is.titech.ac.jp/~chiba/javassist/ ) at runtime. But this should be the absolut last resource. |
|||
|
|
|
It may be that getName() returns the value of a field called |
|||
|
|