如何查找数据库中有多少张表 mysql

摘要: SELECT COUNT(*) TABLES, table_schema FROM information_schema.TABLES WHERE table_schema = 'yxltest' GROUP BY table_schemayxltest:数据库名字 阅读全文
posted @ 2012-10-13 16:18 专注2018 阅读(183) 评论(0) 推荐(0)

如何关掉myeclipse的自动验证

摘要: window->preference->Myeclipse->Validation点击Disable All 阅读全文
posted @ 2012-10-13 16:15 专注2018 阅读(213) 评论(0) 推荐(0)

Java访问Url地址并下载文件

摘要: package com.yangjuqi.resource;import java.io.*;import java.net.URL;/** * java访问URL并下载文件 * @author yangjuqi 2007-12-14 下午04:08:51 * */public class ResourceURLServer{public static void getURLResource(String ourputFile,String urlStr) throws Exception{ FileWriter fw = new FileWriter(ourputFile); PrintW. 阅读全文
posted @ 2012-10-13 14:39 专注2018 阅读(9392) 评论(0) 推荐(1)