- 浏览: 10415 次
最新评论
-
cywhoyi:
string2020 写道用 连接池 的目的不就是,连接用了, ...
配置C3P0连接池 -
lui0101:
dwangel 写道我一向是把 tomcat放在没有空格的路径 ...
java.lang.IllegalArgumentException: Document base C:\Program Files (x86)\Apache -
string2020:
用 连接池 的目的不就是,连接用了,就不用关闭了吗?怎么撸主这 ...
配置C3P0连接池 -
dwangel:
我一向是把 tomcat放在没有空格的路径里的。
java.lang.IllegalArgumentException: Document base C:\Program Files (x86)\Apache
文章列表
java.lang.IllegalArgumentException: Document base C:\Program Files (x86)\Apache Software Foundation\Tomcat 6.0\webapps\manager does not exist or is not a readable directory
该死的错误 出现这种问题解决很简单 写在这里 老是不长记性
1、将webapps目录下的文件都删除
2、wrok 及conf目录下的文件夹都删了
C3P0是一个开源的JDBC连接池,它实现了数据源和JNDI绑定,支持JDBC3规范和JDBC2的标准扩展。目前使用它的开源项目有Hibernate,Spring等。
这里不详谈 只做实现 去往官网下载c3p0 jar包:http://www.126disk.com/fileview_1619526.html
1、jdbc.properties 配置文件
#JDBC连接驱动
jdbc.driver=com.mysql.jdbc.Driver
#服务器连接地址
jdbc.url=jdbc:mysql://127.0.0.1:3306/data?autoReconnect ...
package com.swt.common.util;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileWriter;
impo ...
public static void main(String args[]){
try {
//不是在Java程序中执行而是在操作系统中执行
// Runtime.getRuntime().exec("cmd /c start http://lqi.iteye.com/");
Runtime.getRuntime().exec("explorer \"http://lqi.iteye.com\"");
...
public static void main(String[] args) {
traverseFile("e:/");
}
public static void traverseFile(String dir){
//创建file实例化对象
File f=new File(dir);
//获取目录中所有的文件
File fs[]=f.listFiles();
//判断fs是否为空
if(fs!=null){
for(int i=0;i<fs.length;i++){
//提取
...
ODBC访问 Access数据库
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
try {
Connection conn=DriverManager.getConnection("jdbc:odbc:driver={Microsoft Access Driver (*.mdb)};DBQ=\\192.168.1.108/db/EyeTest.mdb");
} catch (SQLException e) {
// ...
private static final String FILENAME = "dll/service.properties";
private static Properties properties = null;
//静态块
static{
properties = new Properties();
InputStream in = null;
try {
//读取服务文件
in = new FileInputStream(FILENAME);
properties.load(in);
...
1、使用httpclient请求服务
2、需要的java包
private static Logger log = Logger.getLogger(ServiceLink.class);
private static HttpClient client = new HttpClient();
private static boolean flog=true;
/**
* post请求方法 传递地址 、数据
* @param url
* @param datas
* @return
*/
public stat ...
ALTER TABLE '表名' ADD COLUMN '列名' VARCHAR(128) DEFAULT NULL COMMENT '体检指标名称'
package org.data.jdbc;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
public class Jdbc {
//数据库连接 ...