У меня возникла серьезная проблема с этим кодом: svg-android:
public class ParserHelper {
private static final Field STRING_CHARS;
static {
try {
STRING_CHARS = String.class.getDeclaredField("value"); //<-- exception here
STRING_CHARS.setAccessible(true);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private final char[] s;
private final int n;
private char current;
public int pos;
public ParserHelper(String str, int pos) {
try {
this.s = (char[]) STRING_CHARS.get(str);
} catch (Exception e) {
throw new RuntimeException(e);
}
this.pos = pos;
n = s.length;
current = s[pos];
}
STRING_CHARS = String.class.getDeclaredField("value");
выбрасывает экскремент
10-09 10: 25: 58.240: E/AndroidRuntime (3430): вызвано: java.lang.RuntimeException: java.lang.NoSuchFieldException: Нет поля значение в классе Ljava/lang/String; (объявление "java.lang.String" появляется в /system/framework/core -libart.jar)
Я не могу продолжить работу. Только в Android 6.0 Marshmallow. Любая идея?
РЕШИТЬ:
Теперь я не решил проблему статической инициализации, но я изменил инициализацию char[] s
:
public class ParserHelper {
// private static final Field STRING_CHARS;
// static {
// try {
// STRING_CHARS = String.class.getDeclaredField("value");
// STRING_CHARS.setAccessible(true);
// } catch (Exception e) {
// throw new RuntimeException(e);
// }
// }
private final char[] s;
private final int n;
private char current;
public int pos;
public ParserHelper(String str, int pos) {
try {
s = new char[str.length()];
str.getChars(0, str.length(), this.s, 0); //<-- here
} catch (Exception e) {
throw new RuntimeException(e);
}
this.pos = pos;
n = s.length;
current = s[pos];
}