从即日起,我将汇集天下Bug,培养IT精英!让自己变强,让身边人变强,让国家变强!
①
Bug:
java.net.URISyntaxException: Illegal character in query at index 91
Cause:
此异常表明向方法传递了一个不合法或不正确的参数。
Solve:
传递给服务器的参数.replace(” “, “”);
Eg:
String questionContent = et_question.getText().toString().trim().replace(” “,”“);
②
Bug:
public class A{ public class B{ } }
创建java类中类出现is not an enclosing class
Cause:
需要实例B类时,按照正逻辑是:A.B ab = new A.B();那么编译器就会出现一个错误–“is not an enclosing class”,因为静态(static)的类中类不能使用外部类进行操作,必须用实例来进行实例化类中类.
Solve:
A a = new A();
A.B ab = a.new B();
③
Bug:
error: has leaked window c