1.不可变StringString对象是不可变的,String类中每一个看起来会修改String值的方法,实际上都是创建了一个全新的String对象,例如:publicclassImmutable{
publicstaticStringupcase(Strings){
returns.toUpperCase();
}
publicstaticvoidmain(String[]args){
Stringstr1="Str..
分类:
编程语言 时间:
2014-09-10 02:47:40
阅读次数:
256
Java字符串转16 进制工具类Hex.java 源代码下载地址:http://www.zuidaima.com/share/1550463378410496.htm...
分类:
编程语言 时间:
2014-09-08 10:55:16
阅读次数:
260
Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.
Return all such possible sentences.
For example, given
s = "...
分类:
其他好文 时间:
2014-09-02 17:52:35
阅读次数:
191
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
For example, given
s = "leetcode",
dict = ["leet"...
分类:
其他好文 时间:
2014-08-31 20:07:12
阅读次数:
233
今天看到一篇文章:【原始链接】题目是“读入一个数n,计算其各位数字之和,用汉语拼音写出和的每一位数字”,是用c语言实现的。由于我目前正在学习java,所以想用java来实现下。输入格式:每个测试输入包含1个测试用例,即给出自然数n的值。这里保证n小于10100。输出格式:在..
分类:
编程语言 时间:
2014-08-30 19:14:40
阅读次数:
784
字符串中包含的字符数,也就是字符串的长度intlength();获取长度根据位置获取位置上的某个字符charcharAt(intindex);根据字符获取该字符在字符串中位置intindexOf(intch)返回的是ch在字符串中的第一次出现的位置。intindexOf(intch,intfromIndex)从fromIndex指定位置开始,获..
分类:
编程语言 时间:
2014-08-29 11:15:08
阅读次数:
245
文章中,用的API是SimpleDateFormat,它是属于java.text.SimpleDateFormat,所以请记得import进来! 用法: SimpleDateFormat sdf = new SimpleDateFormat( " yyyy-MM-dd HH:mm:ss " ); 这...
分类:
编程语言 时间:
2014-08-21 18:36:14
阅读次数:
224
一、什么是JSP
JSP全称Java Server Pages,是由SunMicrosystems公司倡导和许多公司参与共同创建的一种使软件开发者可以响应客户端请求,而动态生成HTML、XML或其他格式文档的Web网页的技术标准。
二、与Servlet的对比
首先说一下Servlet的一点儿缺陷:在Servlet中所有的html标签必须要抱在Java字符串...
分类:
编程语言 时间:
2014-08-21 17:15:24
阅读次数:
192
1. 声明字符串String s = "abcd";这里,s存储了“abcd”在这个字符串对象的引用,如下图所示:2. 将字符串变量s赋值给字符串变量s2String s2 = s;此时,s2也指向了“abcd”。3. 字符串合并s = s.concat("ef);这里,明显是新创建了字符串对象“a...
分类:
编程语言 时间:
2014-08-16 23:43:31
阅读次数:
333
Java字符串转日期或日期转字符串 & 时间增加一天Calendar的使用字符串转日期或日期转字符串 用法: SimpleDateFormat sdf = new SimpleDateFormat( " yyyy-MM-dd HH:mm:ss " );这一行最重要,它确立了转换的格式,yyyy是完整...
分类:
编程语言 时间:
2014-08-15 19:21:59
阅读次数:
607