You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I looked into re-writing the code myself, but found it would take a great deal of time because the available getBytes method throws UnsupportedEncodingException.
Just pushed to master a small refactoring for java 1.5 which handle the UnsupportedEncodingException. I think it should be OK now for android. Please let me know so I can close this issue.
Jedis depends on this implementation of getBytes
http://download.oracle.com/javase/6/docs/api/java/lang/String.html#getBytes(java.nio.charset.Charset)
Which is not available on Android. Could it use:
http://developer.android.com/reference/java/lang/String.html#getBytes(java.lang.String)
Unfortunately, that throws an exception, which jedis would now have to catch
The text was updated successfully, but these errors were encountered: