0
How to encode strings in java
encoding in java
1 Answer
+ 3
string objects dont have encoding you must encode bytes from this string, for exxample:
byte[] data = Base64.encodeBase64(str.getBytes());
String encoded = new String(data);
Hot today
sizeof funtion with a loop in c!
1 Votes