字符串
文章平均质量分 59
索隆
路漫漫其修远兮,吾将上下而求索
展开
-
String.getBytes()和String(byte[] bytes, Charset charset)
String.getBytes()和String(byte[] bytes, Charset charset) 主要用于对字符编码,防止出现乱码问题String.getBytes() 的作用是:使用平台默认的字符集,将String编码成byte序列,并将结存储到一转载 2011-10-12 09:52:25 · 1407 阅读 · 0 评论 -
字符串函数--startsWith--endsWith--toLowerCase--toUpperCase学习
package four;public class StringDemo { public static void main(String args[]) { String sour="第23届中国电影节获奖名单.txt"; String head="第"; String tail=".txt"; if(sour.startsWith(head)){原创 2012-03-13 14:25:34 · 2811 阅读 · 0 评论 -
使用DES加密解密的工具类
一个工具类,很常用,不做深入研究了,那来可直接用 DesUtil.java package lsy;import java.security.Key;import java.security.SecureRandom;import javax.crypto.Cipher;import javax.crypto.KeyGenerator;import j原创 2012-08-01 23:43:17 · 1671 阅读 · 0 评论 -
解析xml和生成xml(使用dom4j和velocity)
在项目中队xml的解析和生成几乎每个程序员都要遇到。既然如此,对这个不熟悉就说不过去了,打好基础吧。现在学习如何对xml解析和怎样生成xml。首先,写一个xml,作为我们研究的样本。XmlMessage.xml UTF-8 MALL Welcome all you guys 100010 唐诗300首原创 2013-02-28 22:02:40 · 2294 阅读 · 0 评论