while(true){
肇東網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、自適應(yīng)網(wǎng)站建設(shè)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)公司從2013年開始到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)公司。
buff.clear();
int len = sc.read(buff);
if(len ==-1){ break;}
buff.flip();
content += charset.decode(buff);
}
cs1.6退出觀察者模式,不信的話,你自己點(diǎn)進(jìn)去,進(jìn)入以后的話,你建立一個(gè)設(shè)置,設(shè)置里面的話算劃算一點(diǎn)。這樣的話你就可以看到一個(gè)觀察者模式了,然后你點(diǎn)擊關(guān)閉觀察的模式,你就可以退出觀察的模式了。
你這5財(cái)富值還"懸賞"吶,哈哈。
這得看你原來的BS是怎么做的了,Server部分大部分不用變,主要在客戶端部分。你那個(gè)B端要是GWT框架做的或Applet,還是比較容易改成CS模式的。要是JSP為基礎(chǔ)做的那就麻煩了。
這個(gè)是用配置文件連接數(shù)據(jù)庫(kù)的例子,原理和xml一樣,需要你解析文件。供你參考:
db.properties文件內(nèi)容(以oracle為例 )
# 驅(qū) 動(dòng):
driver = oracle.jdbc.OracleDriver
# 地 址:
url = jdbc:oracle:thin:@172.16.0.212:1521:orcl
# 用 戶 名:
user = 1234
# 密 碼:
password = 1234
# 初始連接數(shù):
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";//路徑根據(jù)你自己的實(shí)際情況
props.load(DBUtils.class.getClassLoader().getResourceAsStream(path));
//properties對(duì)象.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();
}
}