仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 1227|回复: 19
打印 上一主题 下一主题

[学习教程] JAVA网页设计果果来看(一个封装了基础JDBC操纵的类)...

[复制链接]
精灵巫婆 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-18 11:55:45 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
唉!都是钱闹的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:53 | 只看该作者
《JAVA语言程序设计》或《JAVA从入门到精通》这两本书开始学,等你编程有感觉的时候也可以回看一下。《JAVA读书笔记》这本书,因为讲的代码很多,也很容易看懂,涉及到面也到位。是你学习技术巩固的好书,学完后就看看《JAVA编程思想》这本书,找找一个自己写的代码跟书上的代码有什么不一样。
再现理想 该用户已被删除
板凳
发表于 2015-1-29 23:03:37 | 只看该作者
你就该学一学Servlet了。Servlet就是服务器端小程序,他负责生成发送给客户端的HTML文件。JSP在执行时,也是先转换成Servlet再运行的。虽说JSP理论上可以完全取代Servlet,这也是SUN推出JSP的本意,可是Servlet用来控制流程跳转还是挺方便的,也令程序更清晰。接下来你应该学习一下Javabean了,可能你早就看不管JSP在HTML中嵌Java代码的混乱方式了,这种方式跟ASP又有什么区别呢?
爱飞 该用户已被删除
地板
发表于 2015-2-6 02:04:59 | 只看该作者
是一种语言,用以产生「小应用程序(Applet(s))
不帅 该用户已被删除
5#
发表于 2015-2-8 21:27:42 | 只看该作者
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
简单生活 该用户已被删除
6#
发表于 2015-2-25 14:23:13 | 只看该作者
当然你也可以参加一些开源项目,一方面可以提高自己,另一方面也是为中国软件事业做贡献嘛!开发者在互联网上用CVS合作开发,用QQ,MSN,E-mail讨论联系,天南海北的程序员分散在各地却同时开发同一个软件,是不是很有意思呢?
海妖 该用户已被删除
7#
发表于 2015-3-7 21:45:19 | 只看该作者
你现在最缺的是实际的工作经验,而不是书本上那些凭空想出来的程序。
飘飘悠悠 该用户已被删除
8#
发表于 2015-3-9 18:36:58 | 只看该作者
在全球云计算和移动互联网的产业环境下,Java更具备了显著优势和广阔前景。
小女巫 该用户已被删除
9#
发表于 2015-3-11 02:17:07 | 只看该作者
另外编写和运行Java程序需要JDK(包括JRE),在sun的官方网站上有下载,thinking in java第三版用的JDK版本是1.4,现在流行的版本1.5(sun称作J2SE 5.0,汗),不过听说Bruce的TIJ第四版国外已经出来了,是专门为J2SE 5.0而写的。
蒙在股里 该用户已被删除
10#
发表于 2015-3-13 09:10:14 | 只看该作者
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
活着的死人 该用户已被删除
11#
发表于 2015-3-13 22:08:44 | 只看该作者
我大二,Java也只学了一年,觉得还是看thinking in java好,有能力的话看英文原版(中文版翻的不怎么好),还能提高英文文档阅读能力。
飘灵儿 该用户已被删除
12#
发表于 2015-3-20 20:15:36 | 只看该作者
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
愤怒的大鸟 该用户已被删除
13#
发表于 2015-3-31 13:11:04 | 只看该作者
是一种突破用户端机器环境和CPU
透明 该用户已被删除
14#
发表于 2015-4-2 07:57:48 | 只看该作者
另外编写和运行Java程序需要JDK(包括JRE),在sun的官方网站上有下载,thinking in java第三版用的JDK版本是1.4,现在流行的版本1.5(sun称作J2SE 5.0,汗),不过听说Bruce的TIJ第四版国外已经出来了,是专门为J2SE 5.0而写的。
金色的骷髅 该用户已被删除
15#
发表于 2015-4-7 16:22:00 | 只看该作者
其实说这种话的人就如当年小日本号称“三个月拿下中国”一样大言不惭。不是Tomjava泼你冷水,你现在只是学到了Java的骨架,却还没有学到Java的精髓。接下来你得研究设计模式了。
若相依 该用户已被删除
16#
发表于 2015-4-16 16:11:30 | 只看该作者
Sun公司看见Oak在互联网上应用的前景,于是改造了Oak,于1995年5月以Java的名称正式发布。Java伴随着互联网的迅猛发展而发展,逐渐成为重要的网络编程语言。
若天明 该用户已被删除
17#
发表于 2015-4-27 04:59:49 | 只看该作者
象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
乐观 该用户已被删除
18#
发表于 2015-4-30 11:24:12 | 只看该作者
在全球云计算和移动互联网的产业环境下,Java更具备了显著优势和广阔前景。
只想知道 该用户已被删除
19#
发表于 2015-4-30 14:20:45 | 只看该作者
学Java必读的两个开源程序就是Jive和Pet Store.。 Jive是国外一个非常著名的BBS程序,完全开放源码。论坛的设计采用了很多先进的技术,如Cache、用户认证、Filter、XML等,而且论坛完全屏蔽了对数据库的访问,可以很轻易的在不同数据库中移植。论坛还有方便的安装和管理程序,这是我们平时编程时容易忽略的一部份(中国程序员一般只注重编程的技术含量,却完全不考虑用户的感受,这就是我们与国外软件的差距所在)。
因胸联盟 该用户已被删除
20#
发表于 2015-5-3 11:31:24 | 只看该作者
Java是一个纯的面向对象的程序设计语言,它继承了 C++语言面向对象技术的核心。Java舍弃了C ++语言中容易引起错误的指针(以引用取代)、运算符重载(operator overloading)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-11-12 08:52

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表