摘要:
j2me学习(一)
——j2me开发工具和厂商sdk介绍
在学习和使用j2me的过程中,会用到很多的开发工具和厂商的sdk,下面是一些简单的介绍:
一、开发工具:
现在常用的开发工具有jbuilder、eclipse等,当然也有一些使用文本编辑器进行开发的。
a) jbuilder
jbuilder是borland公司开发的一个java开发工具,覆盖java开发的......
摘要:
综述:java数据库连接体系结构是用于java应用程序连接数据库的标准方法。jdbc对java程序员而言是api,对实现与数据库连接的服务提供商而言是接口模型。作为api,jdbc为程序开发提供标准的接口,并为数据库厂商及第三方中间件厂商实现与数据库的连接提供了标准方法。jdbc使用已有的sql标准并支持与其它数据库连接标准,如odbc之间的桥接。jdbc实现了所有这些面向标准......
·源代码搜索引擎-Koders.com
a significant portion of application development involves a process of find, copy, paste, and integrate. this process can be greatly accelerated when you can find existing source code that provides a solution to the task at hand.
【程序编程相关:
Struts中不同的Action和Act】getting started
【推荐阅读:
j2ee常见错误(放到这里备查)】koders makes it easy for software developers to find existing source code that solves many common development problems with our vast index of working source code from a variety of open source projects. in many cases you may find code that solves the exact problem you are working on, and in other cases, you can find an 80% solution - where existing code can be suited to your needs with minor modifications.
【扩展信息:
使用struts,ibaits和JSTL】
search syntax
multiple terms are anded together
the results will include files containing all of the terms you specify in the search box. this is known as a logical and. for example:
searching for smtp server will find files containing smtp and server
terms can be stemmed with the * operator
the results will include all terms that start with the terms specified. for example:
searching for xml* will find files containing all words starting with xml such as xmlreader, xmlwriter, xml...
下一页 摘要:
jdbc驱动管理内幕是怎么样的?
drivermanager 类是 jdbc 的管理层,作用于用户和驱动程序之间。它跟踪可用的驱动程序,并在数据库和相应驱动程序之间建立连接。另外,drivermanager类也处理诸如驱动程序登录时间限制及登录和跟踪消息的显示等事务。
对于简单的应用程序,一般程序员需要在此类中直接使用的唯一方法是drivermanager.get......