java
文章平均质量分 67
tammy_zhu
软件工程师
展开
-
输入12345,相应输出一万两千三百四十五的算法
public class numberic { public static void main(String[] args){ printNumToChinese(11124267345786l); } private static void printNumUnit(int digit){ String[] num_u原创 2010-04-13 17:54:00 · 1596 阅读 · 0 评论 -
Java Regular Expressions Syntax
Java Regular Expressions Syntax <br /> 关键字: java regex syntax 一、正则表达式语法<br /><br />1.1.字符<br /><br />x 字符 x。例如a表示字符a<br /><br />// 反斜线字符。在书写时要写为////。(注意:因为java在第一次解析时把////解析成正则表达式//,在第二次解析时再解析为/,所以凡是不是1.1列举到的转义字符,包括1转载 2011-02-14 14:45:00 · 654 阅读 · 0 评论 -
Java code for authenticating into SMTP server with Auth and TLS turned on..
<br />Java code for authenticating into SMTP server with Auth and TLS turned on..<br />After a long search I came across this sample Java code for sending email into an SMTP server which required authentication and secure (TLS) connection. Hence I tho转载 2010-11-22 15:18:00 · 1046 阅读 · 1 评论 -
tag属性分析
<br />学习编写标记文件(tag):<br /><br /> 自定义标记的用途就是给程序员可以自定一些特定功能的标记, 以及封装代码, 达到分工, 重用性等<br /> 多种好处.<br /><br /> JSP规范2.0中新增了标记文件(tag file)的使用, 免除以前自定义标记必须为一个Java类, 以及必须<br /> 加上一个标记描述文件(tld)的编码难度.<br /><br /> 以下我们来看标签文件的使用.<br /><br转载 2010-11-05 14:26:00 · 6734 阅读 · 2 评论 -
xstream
使用 XStream 在 JavaBean 与 XML/JSON 之间相互转换XML 和 JSON 是当今常用的两种数据描述与传输的格式,特别是涉及到 JS 时使用 JSON 颇为频繁。自然,在 Java 的世界里少不了完成 JavaBean 与这两种格式相互转换的组件,那就是 XStream 和 JSON-lib。这里我简单记下XStream 的用法。其实相类似的工具早已有之。如果用过 DWR 的同志,一定有印像,DWR进行远程方法调用时也能为你完成 JavaBean 和 JSON 格式转载 2010-12-13 10:31:00 · 2288 阅读 · 1 评论 -
用Java进行HTTP请求的代码示例
采用JDK自带API的方式:InputStream in = null;try { URLConnection connection = new URL(url).openConnection(); connection.setConnectTimeout(1000 * 60); // 设置连接超时时间: 60s connection.setReadTimeout(1000 * 60); // 设置读取超时时间: 60s connection.conn转载 2010-12-09 16:34:00 · 1297 阅读 · 0 评论 -
org.hibernate.exception.LockAcquisitionException
<br /><br />org.hibernate.exception.LockAcquisitionException:could not insert: [com.yinhoo.elink.domain.UserRole]<br /> <br /> org.springframework.dao.CannotAcquireLockException:could not insert:<br /> [com.yinhoo.elink.domain.UserR原创 2010-07-07 14:48:00 · 25498 阅读 · 1 评论 -
java正规表达式相关问题
<br />(1)Pattern pt=Pattern.compile("<//s*body[^>]*>.*?<//s*/body//s*>", Pattern.CASE_INSENSITIVE |Pattern.DOTALL);<br />Matcher mt=pt.matcher(htmlContent); <br />while(mt.find()){<br /> String content = mt.group();<br />原创 2010-07-02 14:16:00 · 1356 阅读 · 0 评论 -
MimeMessage 发送邮件附件
<br /> import java.io.File;<br /><br />import javax.mail.MessagingException;<br />import javax.mail.internet.MimeMessage;<br /><br />import org.springframework.beans.factory.annotation.Autowired;<br />import org.springframework.core.io.ClassPathR原创 2010-07-01 13:37:00 · 19223 阅读 · 0 评论 -
Mail server connection failed; nested exception is javax.mail.MessagingException: 501 Syntax: HELO hostname
出现这个问题,是系统利用javamail组件发送邮件,Javamail在提取本地hostname的时候会dig 改hostname,然后以改ip发送邮件。由于hostname对应的ip地址,linux无法解析(如果是windows则无这个问题,windows利用netbios协议原创 2010-05-06 14:52:00 · 18405 阅读 · 2 评论 -
DBCP的配置参数
@font-face { font-family: 宋体;}@font-face { font-family: @宋体;}@page Section1 {size: 595.3pt 841.9pt; margin: 72.0pt 90.0pt 72.0pt 90.0pt; layout-grid: 15.6pt; }P.MsoNormal { TEXT-JUSTIFY: inter-ideograph; FONT-SIZE: 10.5pt; MARGIN: 0cm 0cm 0原创 2010-07-01 13:31:00 · 507 阅读 · 0 评论 -
tomcat编码配置
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8"/>原创 2010-04-28 15:48:00 · 517 阅读 · 0 评论 -
java.io.CharConversionException: isHexDigit
java.io.CharConversionException: isHexDigit 原因:form get提交.form中提交内容过长解决:通过form post提交原创 2010-04-28 15:43:00 · 730 阅读 · 0 评论 -
运用poi导出xls
import java.awt.image.BufferedImage;import java.io.ByteArrayOutputStream;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStre原创 2010-04-22 12:17:00 · 1356 阅读 · 0 评论 -
压缩文件夹
public static void zip(ZipOutputStream zipOutputStream, File zipFile, String rootPath) throws IOException { if (zipFile.isDirectory()) { File[] subFiles = zipFile.listFiles()原创 2010-04-09 17:19:00 · 439 阅读 · 0 评论 -
压缩文件
/** * 传入一个文件路径数组,压缩目标文件,生成一个压缩文件 * * @param path 传入文件在物理磁盘的实际位置 */ public static void zipFiles(List paths, String zipPath) throws IOException { int fileNameIndex = zipPat原创 2010-04-09 16:03:00 · 437 阅读 · 0 评论 -
Getting the Requesting URL in a Servlet
Getting the Requesting URL in a ServletA servlet container breaks up the requesting URL into convenientcomponents for the servlet. The standard API does not require theoriginal requesting URL to be转载 2012-01-15 12:37:44 · 534 阅读 · 0 评论