07 2018 档案
摘要:1.判断checkedbox是否被选中: $("#box").prop('checked') true:已被选中: false:未被选中
阅读全文
摘要:空指针异常: list.add(): 问题:空指针, 原因:因为list集合创建的时候没有指向一个引用; 解决:创建的时候不要用List<String> list = null;或者List<String> list ;应该使用:List<String> list = new ArrayList<>
阅读全文
摘要:package kimoji; import java.io.*; public class FileTest { public static void main(String[] args) throws IOException { out1("D:\\ppt\\Oracle_SQL基礎知識.pp
阅读全文