打开CSOL文件夹→BIN文件夹→HShield文件夹→Update文件夹→autoup.exe
打开这个外挂检测程序的自动更新旦镇,原来可能是外挂检测的版本太老了
如果在不行的话,就
安装程序下载地址:
http://cdnpatch.csonlinechina.com/CSOUpdate_OBT_CHN09070101_HackShield.exe
如果还不行李缓的,那就先对你的电脑进行杀毒,或者重装。
看看是不是杀模扰粗毒软件限制你了
找到那个hl.exe为它创建快捷方式
然后者敬迹,在这个快捷方式上按鼠标右键,点 属性
在 目标 那栏,本来是 “...\hl.exe”,是不是,后面你自己加个 -game cstrike
就是变成 ".......\hl.exe" -game cstrike
然后这个快捷方式就可以双稿激击,用来首并玩cs了!
如果搞不定短消息给我
这个是用配置文件连接数据库的例子,原理和xml一样,需要你解析文件。供你参考:db.properties文件内容(以oracle为例 )
# 驱 动:
driver = oracle.jdbc.OracleDriver
# 地 址:
url = jdbc:oracle:thin:@172.16.0.212:1521:orcl
# 用 户 名:
user = 1234
# 密 码:
password = 1234
# 初始连接数:
initialSize=10
-------------------------------------------
代码:
public class DBUtils {
private static String driver =null
private static String url = null
private static String user = null
private static String password = null
private static BasicDataSource ds
static{
//读取程序外的.properties 文件
//需要.properties文件的包路径
Properties props = new Properties()
try {
String path ="utils/db.properties"拆败//路径根据你自己的实际情况
props.load(DBUtils.class.getClassLoader().getResourceAsStream(path))
//properties对旅雀颤象.getProperty("字符串"岁迹)
driver=props.getProperty("driver")
url=props.getProperty("url")
user=props.getProperty("user")
password=props.getProperty("password")
ds = new BasicDataSource()
ds.setDriverClassName(driver)
ds.setUrl(url)
ds.setUsername(user)
ds.setPassword(password)
ds.setInitialSize(Integer.parseInt(props.getProperty("initialSize")))
Class.forName(driver)
} catch (Exception e) {
e.printStackTrace()
}
}
public static Connection getConnection()
throws SQLException {
Connection conn = null
if(ds!=null)conn=ds.getConnection()
return conn
}
public static void closeConnection(Connection conn) throws Exception {
if(conn!=null)conn.close()
}
public static void main(String[] args) throws SQLException {
DBUtils db=new DBUtils()
db.getConnection()
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)