- 浏览: 177986 次
- 性别:
- 来自: 深圳
最新评论
-
pointdew:
...
ANT控制台输出中文乱码的解决方法 -
so_depress:
谢谢分享
分页--Mysql中limit的用法详解 -
xht0430:
谢谢分享~~
在struts2超链接标签中传id值的方式 -
BenoWay:
我这里没有用。
try {
Substance ...
解决substance.jar标题栏中文乱码的方法 -
wawame:
谢谢,辛苦了。
Unable to instantiate default tuplizer [org.hibernate.tuple.entity.PojoEntityTup
文章列表
我用的是MYSQL数据库,老师的书中说到Struts2的上传的时候貌似只说到上传到服务器,没有讲到数据库,我现在做的项目中用到JBPM工作流,里面有一个需求是上传processDefinition.xml文件和processImage.jpg文件以便部署工作流程到系统中,
在持久化层调用的方法是 public void deployProcessDefinition(byte[] processDefinition, byte[] processImage);
WorkFlow(工作流程)有如下属性:
public class Workflow {
private int id;
...
- 2009-03-05 18:16
- 浏览 1440
- 评论(0)
只要是技术贴就会有专家回答的论坛http://www.crazyit.org/?fromuid=412
- 2008-11-30 14:36
- 浏览 943
- 评论(0)
其他的地方都一样,设置系统编码和表编码
这个呵呵。。。
&
转义符
xp 下
conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/htwebsite?useUnicode=true&characterEncoding=GBK","root","root");
ubuntu 下
conn=DriverManager.getConnection("jdbc:mys
- 2008-11-17 10:04
- 浏览 558
- 评论(0)
<scripttype="text/javascript">
functionvalidate()
{
varidField=document.getElementById("username");
//escape函数的作用是将非英文字符转为一种特殊的编码
//如果想把一个值放在URL中就用这个函数
//alert(idField.value);
varurl="validate.jsp?username="+escape(idField.value);
//不同浏览器生成XMLHttpRe ...
- 2008-11-17 10:03
- 浏览 686
- 评论(0)
sys-configure.xml
<?xmlversion="1.0"encoding="UTF-8"?>
<sys-configure>
<jdbc-info>
<driver-class-name>oracle.jdbc.driver.OracleDriver</driver-class-name>
<url>jdbc:oracle:thin:@127.0.0.1:1521:sxt</url>
<user-name>drp</ ...
- 2008-11-17 10:03
- 浏览 609
- 评论(0)
<palign="center">
<inputtype="submit"value="更新"/>
<inputtype="button"value="确认订单"onclick="document.location.href='confirm.jsp'"/>
</p>
</form>
- 2008-11-17 10:02
- 浏览 643
- 评论(0)
怎样把一个数组用URL传到本页面???
《productsearchsimple.jsp页面的代码》
<%
StringstrCategoryId[]=request.getParameterValues("categoryid"); //此处是从另一个页面中的checkbox传过来的
Stringkeyword=request.getParameter("keyword");
StringstrPageNo=request.getParameter("pageNo");
intpageNo=1;
...
- 2008-11-17 10:01
- 浏览 984
- 评论(0)
publicstaticvoidgetCategories(List<Category>list,intid)
{
Connectionconn=null;
try
{
conn=DB.getConn();
getCategories(conn,list,id);
}finally
{
DB.closeConn(conn);
}
}
privatestaticvoidgetCategories(Connectionconn,List<Category>list,intid)
{
ResultSetrs=null;
try
{
String ...
- 2008-11-17 10:00
- 浏览 778
- 评论(0)
mysqldump --opt -h 127.0.0.1 -u root --password=tiger oa > c:\oabackdbbackup.sql去MYSQL的BIN目录下执行如上的语句,还原的时候直接执行备份的SQL语句就行了
- 2008-11-17 10:00
- 浏览 339
- 评论(0)
1. 隔三秒后自动跳到指定的页面
<center>修改成功</center>
<center>三秒钟后返回原来的页面</center>
<script type="text/javascript">
function go()
{
document.location.href="cart.jsp";
}
setTimeout(go,5000); ...
- 2008-11-17 10:00
- 浏览 791
- 评论(0)
String sql=new SimpleDateFormat("yyyy-MM-dd").format(endDate);endDate is the type of "Date()"this knowledge can be seen in the Mashibin ' s "Date Solution"
- 2008-11-17 09:59
- 浏览 845
- 评论(0)
应该说在程序开发中,复制是不可避免的,但在复制后修改的时候要特别注意,像今天就因为在修改这个搜索页面时,把产品列表的JSP代码复制了过来,原来的
产品列表的提交是提交到本页面的,即是categorylist.jsp,在修改这个页面的时候一直忘了把它改到productsearch.jsp所以
一直提交到的是categorylist,找了几天才注意到这个,浪费了不少的时间,值得引以为戒!!!!
- 2008-11-17 09:59
- 浏览 403
- 评论(0)
sql.Date
和sql.TimeStamp都是从util.Date继承而来,util.Date既包括日期又包含时间,sql.Date只包含日
期,sql.TimeStamp既包括日期又包含时间,所以当想把util.Date的东西存到数据库里的时候,必须用sql.TimeStamp来转
换,不能用sql.Date或Time转换,因为前者只包含日期,后者只包含时间
- 2008-11-17 09:59
- 浏览 665
- 评论(0)
publicList<Product>getProducts(intpageNo,intpageSize)
{
Connectionconn=null;
ResultSetrs=null;
List<Product>list=newArrayList<Product>();
conn=DB.getConn();
Stringsql="select*fromproductlimit"+(pageNo-1)*pageSize+","+pageSize;
rs=DB.executeQuery(conn, ...
- 2008-11-17 09:58
- 浏览 743
- 评论(0)
在我们使用查询语句的时候,经常要返回前几条或者中间某几行数据,这个时候怎么办呢?不用担心,mysql已经为我们提供了这样一个功能。
SELECT*FROMtableLIMIT[offset,]rows|rowsOFFSEToffset
LIMIT 子句可以被用于强制 SELECT 语句返回指定的记录数。LIMIT
接受一个或两个数字参数。参数必须是一个整数常量。如果给定两个参数,第一个参数指定第一个返回记录行的偏移量,第二个参数指定返回记录行的最大数目。初
始记录行的偏移量是 0(而不是 1): 为了与 PostgreSQL 兼容,MySQL 也支持句法: LIMIT # OFFS ...
- 2008-11-17 09:58
- 浏览 930
- 评论(1)