String转Boolean
String a = "true";Boolean.getBoolean(a);
Boolean转String
boolean b = true;
String s = String.valueOf(b);
大家觉得有用可以支持一下哦