仓酷云
标题:
JAVA网页设计果果来看(一个封装了基础JDBC操纵的类)...
[打印本页]
作者:
精灵巫婆
时间:
2015-1-18 11:55
标题:
JAVA网页设计果果来看(一个封装了基础JDBC操纵的类)...
唉!都是钱闹的1.Swing和.net开发比较------从市场份额看.net开发主要占据大部分的中小型和中型的的桌面开发,原因是它封装了很多工具封装odbc.java
---------------------------------------------
packagebbs;
/*
databaseoperationclass,testbyodbc
Thisjavabeaniswrittenbyzergling
Itismyfirstjavabean:o
version1.01
*/
importjava.sql.*;
importjava.lang.*;
importjava.io.*;
importjava.util.*;
importsun.io.*;
publicclassodbc
{
ConnectionsqlCon;
ResultSetrstSql;
StatementstmS;
StringstrCon;
StringstrSql;
booleanstatus;
longrowcount;
intpage;
intpagesize;
longpagecount;
longfirstrecord;
//connecttothedefaultdatabase
publicbooleanconnect()
{
//Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
this.strCon="jdbc:odbc:jspbbs";//replacewithyourdefaultdatabase
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
this.sqlCon=java.sql.DriverManager.getConnection(this.strCon,"sa","");//replacewithyourdefaultdatabaseconnectionconfigureoption
this.status=true;
returntrue;
}
catch(Exceptione)
{
this.status=false;
returnfalse;
}
}
//connecttothecustomdatabase
publicbooleanconnect(StringconName,Stringusername,Stringpassword)
{
//Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
this.strCon=conName;
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
this.sqlCon=java.sql.DriverManager.getConnection(this.strCon,username,password);
this.status=true;
returntrue;
}
catch(Exceptione)
{
this.status=false;
returnfalse;
}
}
//executesql(insert,update,delete,...)
publicbooleanexecute(Strings)
{
try
{
this.stmS=this.sqlCon.createStatement();
this.stmS.executeUpdate(s);
this.status=true;
returntrue;
}
catch(Exceptione)
{
this.status=false;
returnfalse;
}
}
//querythedatafromdatabase
publicbooleanquery(Strings)
{
try
{
this.rowcount=0;
this.stmS=this.sqlCon.createStatement();
this.rstSql=this.stmS.executeQuery(s);
while(this.nextrecord())
{
this.rowcount++;
}
this.rstSql=this.stmS.executeQuery(s);
this.status=true;
returntrue;
}
catch(Exceptione)
{
this.status=false;
returnfalse;
}
}
//returntherowcount
publiclonggetrowcount()
{
returnthis.rowcount;
}
//returnthepagecount
publiclonggetpagecount()
{
returnthis.pagecount;
}
//returntheresultsetofdata
publicStringgetstring(Strings)
{
try
{
returnthis.rstSql.getString(s);
}
catch(Exceptione)
{
return"notexists";
}
}
publicintgetint(Strings)
{
try
{
returnInteger.parseInt(this.rstSql.getString(s));
}
catch(Exceptione)
{
return0;
}
}
//resultsetmoveforward
publicbooleannextrecord()
{
try
{
returnthis.rstSql.next();
}
catch(Exceptione)
{
returnfalse;
}
}
//setcurrentpage(recallfirst)
publicbooleansetpage(intsize,intno)
{
this.pagesize=size;
this.page=no;
this.pagecount=Math.round((this.rowcount-1)/this.pagesize)+1;
this.firstrecord=this.pagesize*(this.page-1);
try
{
for(inti=0;i<this.firstrecord;i++)
if(!this.nextrecord())break;
returntrue;
}
catch(Exceptione)
{
returnfalse;
}
}
//getstringfromdatabaseandchangeitintochinese
publicStringreadChinese(Strings)
{
try
{
Stringtemp=newString(s.getBytes("GB2312"),"8859_1");
returntemp;
}
catch(Exceptione)
{
returns;
}
}
//writestringtothedatabaseschinesetransform
publicstaticStringwriteChinese(Strings)
{
char[]orig=s.toCharArray();
byte[]dest=newbyte[orig.length];
for(inti=0;i<orig.length;i++)
dest[i]=(byte)(orig[i]&0xFF);
try
{
ByteToCharConvertertoChar=ByteToCharConverter.getConverter("gb2312");
returnnewString(toChar.convertAll(dest));
}
catch(Exceptione)
{
returns;
}
}
//stringssearchandreplace
publicStringreplace(Stringcon,Stringtag,Stringrep){
intj=0;
inti=0;
intk=0;
StringRETU="";
Stringtemp=con;
inttagc=tag.length();
while(i<con.length()){
if(con.substring(i).startsWith(tag)){
temp=con.substring(j,i)+rep;
RETU+=temp;
i+=tagc;
j=i;
}
else{
i+=1;
}
}
RETU+=con.substring(j);
returnRETU;
}
publicVectorlistValue(Stringcon,Stringtag){
intj=0;
inti=0;
intk=0;
Vectorvv=newVector();
Stringtemp=con;
inttagc=tag.length();
while(i<con.length()){
if(con.substring(i).startsWith(tag)){
temp=con.substring(j,i);
vv.addElement(temp);
i+=tagc;
j=i;
}
else{
i+=1;
}
}
vv.addElement(con.substring(j));
returnvv;
}
//filtthehtmlcode&sqlsymbol
publicStringhtmlencode(Strings)
{
try
{
Stringtemp=this.replace(s,"<","<");
temp=this.replace(temp,">",">");
temp=this.replace(temp,"",""");
temp=this.replace(temp,""",""");
temp=this.replace(temp,"","");
temp=this.replace(temp,"
","<br>");
returntemp;
}
catch(Exceptione)
{
returns;
}
}
//returnthestatusoflastoperation
publicbooleangetstatus()
{
returnthis.status;
}
//closeallobject
publicbooleanclose()
{
try
{
if(this.sqlCon!=null)this.sqlCon.close();
if(this.rstSql!=null)this.rstSql.close();
if(this.stmS!=null)this.stmS.close();
this.status=true;
returnfalse;
}
catch(Exceptione)
{
this.status=false;
returntrue;
}
}
}
到时我们不用学struts,不用学spring,不用学Hibernate,只要能把jsf学会了,完全可以替代所有的框架,包括AJAX,都知道AJAX并不是新技术,虽说我没深入学习jsf但我认为jsf应该已经能通过其它技术替代AJAX,实现无缝刷新。
作者:
第二个灵魂
时间:
2015-1-21 17:15
《JAVA语言程序设计》或《JAVA从入门到精通》这两本书开始学,等你编程有感觉的时候也可以回看一下。《JAVA读书笔记》这本书,因为讲的代码很多,也很容易看懂,涉及到面也到位。是你学习技术巩固的好书,学完后就看看《JAVA编程思想》这本书,找找一个自己写的代码跟书上的代码有什么不一样。
作者:
再现理想
时间:
2015-1-29 23:03
你就该学一学Servlet了。Servlet就是服务器端小程序,他负责生成发送给客户端的HTML文件。JSP在执行时,也是先转换成Servlet再运行的。虽说JSP理论上可以完全取代Servlet,这也是SUN推出JSP的本意,可是Servlet用来控制流程跳转还是挺方便的,也令程序更清晰。接下来你应该学习一下Javabean了,可能你早就看不管JSP在HTML中嵌Java代码的混乱方式了,这种方式跟ASP又有什么区别呢?
作者:
爱飞
时间:
2015-2-6 02:04
是一种语言,用以产生「小应用程序(Applet(s))
作者:
不帅
时间:
2015-2-8 21:27
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
作者:
简单生活
时间:
2015-2-25 14:23
当然你也可以参加一些开源项目,一方面可以提高自己,另一方面也是为中国软件事业做贡献嘛!开发者在互联网上用CVS合作开发,用QQ,MSN,E-mail讨论联系,天南海北的程序员分散在各地却同时开发同一个软件,是不是很有意思呢?
作者:
海妖
时间:
2015-3-7 21:45
你现在最缺的是实际的工作经验,而不是书本上那些凭空想出来的程序。
作者:
飘飘悠悠
时间:
2015-3-9 18:36
在全球云计算和移动互联网的产业环境下,Java更具备了显著优势和广阔前景。
作者:
小女巫
时间:
2015-3-11 02:17
另外编写和运行Java程序需要JDK(包括JRE),在sun的官方网站上有下载,thinking in java第三版用的JDK版本是1.4,现在流行的版本1.5(sun称作J2SE 5.0,汗),不过听说Bruce的TIJ第四版国外已经出来了,是专门为J2SE 5.0而写的。
作者:
蒙在股里
时间:
2015-3-13 09:10
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
作者:
活着的死人
时间:
2015-3-13 22:08
我大二,Java也只学了一年,觉得还是看thinking in java好,有能力的话看英文原版(中文版翻的不怎么好),还能提高英文文档阅读能力。
作者:
飘灵儿
时间:
2015-3-20 20:15
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
作者:
愤怒的大鸟
时间:
2015-3-31 13:11
是一种突破用户端机器环境和CPU
作者:
透明
时间:
2015-4-2 07:57
另外编写和运行Java程序需要JDK(包括JRE),在sun的官方网站上有下载,thinking in java第三版用的JDK版本是1.4,现在流行的版本1.5(sun称作J2SE 5.0,汗),不过听说Bruce的TIJ第四版国外已经出来了,是专门为J2SE 5.0而写的。
作者:
金色的骷髅
时间:
2015-4-7 16:22
其实说这种话的人就如当年小日本号称“三个月拿下中国”一样大言不惭。不是Tomjava泼你冷水,你现在只是学到了Java的骨架,却还没有学到Java的精髓。接下来你得研究设计模式了。
作者:
若相依
时间:
2015-4-16 16:11
Sun公司看见Oak在互联网上应用的前景,于是改造了Oak,于1995年5月以Java的名称正式发布。Java伴随着互联网的迅猛发展而发展,逐渐成为重要的网络编程语言。
作者:
若天明
时间:
2015-4-27 04:59
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
作者:
乐观
时间:
2015-4-30 11:24
在全球云计算和移动互联网的产业环境下,Java更具备了显著优势和广阔前景。
作者:
只想知道
时间:
2015-4-30 14:20
学Java必读的两个开源程序就是Jive和Pet Store.。 Jive是国外一个非常著名的BBS程序,完全开放源码。论坛的设计采用了很多先进的技术,如Cache、用户认证、Filter、XML等,而且论坛完全屏蔽了对数据库的访问,可以很轻易的在不同数据库中移植。论坛还有方便的安装和管理程序,这是我们平时编程时容易忽略的一部份(中国程序员一般只注重编程的技术含量,却完全不考虑用户的感受,这就是我们与国外软件的差距所在)。
作者:
因胸联盟
时间:
2015-5-3 11:31
Java是一个纯的面向对象的程序设计语言,它继承了 C++语言面向对象技术的核心。Java舍弃了C ++语言中容易引起错误的指针(以引用取代)、运算符重载(operator overloading)
欢迎光临 仓酷云 (http://ckuyun.com/)
Powered by Discuz! X3.2