Category Archives: java

My java solution in work!

JAVA转换人民币大写,财务处理JAVA转换金额人民币大写

Posted by Jerry in java | Leave a comment

java 转化金额成人民币大写通用方法工具类
// 每个数字对应的大写
private static final String[] num = { “零”, “壹”, “贰”, “叁”, “肆”, “伍”, “陆”,
“柒”, “捌”, “玖”, };
/**
* 处理金额的整数部分,返回”…圆整”
*
* @param integer
* @return String
* @throws Exception
*/ Continue reading

Make your fckeditor upload image & file work in java struts(ssh)

Posted by Jerry in java | 1 Comment

Today I try to use fckeditor in my project. Except upload image and file other works well . I found the problem the contrl is php script. And I google it get the result is , Add a package in your “lib” and set flow code to you web.xml.
Filter url “/js/fckeditor/editor/filemanager/connectors/*” to get the uploaded image and save it .
Continue reading