- 浏览: 148982 次
- 性别:
- 来自: 南昌
最新评论
-
a276664990:
这玩意怎么使用?
googleMap.js -
xm_koma:
有没有将JFreeChart生成的图表导出到Excel中的例子 ...
在Web上用iText和JFreeChart将图形报表导出到PDF -
chong2230:
多谢 借用了
js复制当前链接 -
mikkjl:
非常感谢 按照你的做法 成功解决了问题 呵呵
struts2配置多个配置文件 -
yadsun:
推荐你用ActivePort,一个小工具300k不到,最重要的 ...
端口查看
文章列表
struts2 和FCKEditor 整合 不能上传图片的问题Struts2 整合 FCKeditor
最近开发项目用到了struts2和hibernate,在后台用到了文章编辑的fck,以前曾经用过fck,配置部署都没有问题,没有想到这次怎么都不能上传图片、flash之类的,经 ...
- 2009-07-14 10:38
- 浏览 1283
- 评论(0)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="test" class="com.jxsme.gov.test.testBean">
< ...
- 2009-07-14 10:37
- 浏览 1313
- 评论(0)
注意..包不能相同..在调用的时候应该加上namespace="/a"上定义的..如
<from action="/a/login.action">
struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http: ...
- 2009-07-14 10:36
- 浏览 3054
- 评论(1)
package cn.jxsme.util.tool;
/*
* autho huangjin green eat
*Oct 17, 2008
*/
public class CharLong {
public static String chop(String orignalString,int length,String chopedString) {
if (orignalString==null||orignalString.length()==0) {
return orignalString;
}
orignalStr ...
- 2009-07-14 10:36
- 浏览 921
- 评论(0)
package cn.jxsme.util.tool;
/*
* autho huangjin green eat
*Oct 17, 2008
*/
public class CharMi {
public String encoding(String pwd) {
char chr [] = pwd.toCharArray();
for(int i =0;i<chr.length;i++)
{
int ascii = Integer.valueOf(chr[i]);
char newchr = (char)(asc ...
- 2009-07-14 10:35
- 浏览 867
- 评论(0)
package cn.jxsme.util.tool;
import java.sql.Date;
import java.sql.Time;
import java.util.Calendar;
/*
* autho huangjin green eat
*Oct 20, 2008
*/
public class DataTool {
public static Date getNowDate(){
java.sql.Date currDate=new java.sql.Date(new java.util.Date().getTime());//得到当前 ...
- 2009-07-14 10:34
- 浏览 769
- 评论(0)
package cn.jxsme.util.tool;
import java.util.regex.Pattern;
/*
* autho huangjin green eat
*Oct 17, 2008
*/
public class FifterHtml {
public static String Html2Text(String inputString) {
String htmlStr = inputString; //��html��ǩ���ַ�
String textStr ="";
java.util.re ...
- 2009-07-14 10:34
- 浏览 936
- 评论(0)
package cn.jxsme.util.tool;
import java.util.Calendar;
/*
* autho huangjin green eat
*Oct 17, 2008
*/
public class File {
public String CreateFileNameYYM() {
Calendar cal = Calendar.getInstance();
int y=cal.get(Calendar.YEAR);
int yue=cal.get(Calendar.MONTH);
int ri=cal.get(Calendar.D ...
- 2009-07-14 10:33
- 浏览 662
- 评论(0)
package cn.jxsme.util.tool;
/*
* autho huangjin green eat
*Oct 20, 2008
*/
public class LoginNameCheck {
public boolean UserNameCheck(String str){
java.util.regex.Pattern p=null; // 正则表达式
java.util.regex.Matcher m=null; // 操作的字符串
boolean value=true;
try{
p = java.util.regex.Pattern ...
- 2009-07-14 10:33
- 浏览 683
- 评论(0)
package cn.jxsme.util.tool;
/************************************************
MD5 算法的Java Bean
@author:Topcat Tuppin
Last Modified:10,Mar,2001
*************************************************/
/*************************************************
md5 类实现了RSA Data Security, Inc.在提交给IETF
的RFC1321中的MD5 me ...
- 2009-07-14 10:32
- 浏览 770
- 评论(0)
3个包:可以到apche去下载 commons-dpcp,commons-pool ,servlet-api.
在struts-config.xml中配置是:
<data-sources>
<data-source key="org.apache.struts.action.DATA_SOURCE" type="org.apache.commons.dbcp.BasicDataSource">
<set-property property="url" value=& ...
- 2009-07-14 10:30
- 浏览 510
- 评论(0)
file对象
在类写出对应的fileFileName则为该图片的名称,
fileFileUploadType则为该图片上传的类型
package cn.struts.admin;
import com.opensymphony.xwork2.ActionSupport;
import cn.jxsme.hibernate.service.articleService;
import cn.jxsme.hibernate.service.categoryService;
import cn.jxsme.hibernate.model.Article;
import cn.jxsme.hibern ...
- 2009-07-14 10:29
- 浏览 829
- 评论(0)
struts2中action跳转
- 博客分类:
- Struts2
在result中添加 <result name="adminCategoryDejById" type="redirect">categoryShow.action</result>
- 2009-07-14 10:29
- 浏览 1560
- 评论(1)
标签:it 分类:编程时所遇的问题
1.
org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save():
原因:<id>元素配置不正确,<id>元素缺少其子元素<generator></generator>的配置。解决方法:<id>元素映射了相应数据库表的主键字段,对其子元素<generator class="">,其中class的取 ...
- 2009-07-14 10:28
- 浏览 935
- 评论(0)
<s:iterator id="at" status="st" value="userList">
<tr>
<td height="20" bgcolor="#FFFFFF" class="STYLE1">${at.name }</td>
<td height="20" bgcolor="#FFFFFF" class ...
- 2009-07-14 10:26
- 浏览 901
- 评论(0)