摘要:
book.xml <?xml version="1.0" encoding="UTF-8"?><books><book><name>java</name><price>25</price></book><book><name>php</name><price>30</price></book></b 阅读全文
摘要:
public class Simple { @Test public void test1(){ System.out.println("111"); } @Test public void test2(){ System.out.println("222"); } @Test public voi 阅读全文
摘要:
public void export(){try {String columns = getPara("nameArray");List<Record> list = SimpleService.export(columns);HSSFWorkbook wb = new HSSFWorkbook() 阅读全文
摘要:
public class Test { public static void main(String[] args) throws IOException { InputStream in = Test.class.getClassLoader().getResourceAsStream("DB.p 阅读全文
摘要:
public static void main(String[] args) throws NoSuchAlgorithmException { String systemcode = "xxx"; //密钥 String password = "enasddsa"+systemcode; Mess 阅读全文
摘要:
//递归找出文件夹里面所有文件 public static void main(String[] args) { File f=new File("c://123"); findFile(f); } public static void findFile(File f){ File[] str=f. 阅读全文
摘要:
java FileReader/FileWriter读写字母和数字没问题,但读写汉字就乱码。记录下,后面找到解决方法再补上。 public static void main(String[] args) { FileReader fr = null; FileWriter fw = null; tr 阅读全文
摘要:
//读取文件->写出文件 public static void main(String[] args) { InputStream in =null; OutputStream out = null; try{ File file = new File("c:\\123.doc"); in = ne 阅读全文
摘要:
<!DOCTYPE html><html lang="zh-cn"><head><meta charset="utf-8" /><title>css冻结列的效果</title><!-- 1.div里面放table或者其它容器,当子容器的宽度大于父容器时,父容器就会出现滚动条。2.头部固定不动的列让它 阅读全文
摘要:
值得一看的书籍 microsoft sql server 2005技术内幕 汇编语言-王爽 linux内核完全注释 算法导论 编程之美 -编程之美小组 彻底搞定C指针 mysql技术内幕 阅读全文