Java基础
文章平均质量分 51
iteye_650
这个作者很懒,什么都没留下…
展开
-
servlet
幂等doGet()只是要得到一些东西,不会修改服务器上的任何内容。doGet()是幂等的,能执行多次,不会产生任何不好的副作用;doPost()不是幂等的,Post体中提交的数据可能用于不可逆转的事务。幂等:表示同一个请求可以做两次,而不会对服务器产生负面作用。简单的超链接往往意味着Get,若表单属性注明method="POST",则就是一个Post;若未注明,则是Get。Servlet中do...原创 2009-10-16 09:09:58 · 80 阅读 · 0 评论 -
date 转换
import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;public class TestDate { public static void main(String[] args) throws ParseException { Date d=...2009-11-04 10:59:53 · 76 阅读 · 0 评论 -
String indexOf substring
public class TestString { public static void main(String[] args) { String str="abc.de"; int index=str.indexOf("."); System.out.println(index); //3, 从0开始 System.out.println(str.length());...2009-11-04 11:01:43 · 97 阅读 · 0 评论 -
Calendar,Date,long(Millis)转换
//Calendar与Date、long的转换: Calendar ca = Calendar.getInstance(); Date d = ca.getTime(); long l = ca.getTimeInMillis(); ca.setTime(d); ca.setTimeInMillis(l);//Date和long间的转换: Date...原创 2009-11-04 11:27:09 · 147 阅读 · 0 评论 -
java 数据类型
short 2 byte 2*8bitchar 2 byte 2*8bitint 32 byte 4*8bitlong 64 byte 8*8bitfloat 32 byte 4*8bit 单精度 4字节double 64 byte 8*8bit 双精度 8字节 byte,short,int,long都属于整形...原创 2010-01-05 11:06:17 · 99 阅读 · 0 评论 -
pageContext.findAttribute()与pageContext.getAttribute()的区别
1、abstract Object findAttribute(String name) Searches for the named attribute in page, request, session (if valid), and application scope(s) in order and returns the value associated or n...原创 2009-09-29 11:30:04 · 218 阅读 · 0 评论 -
String split()
如字符串:http://www.vvcc.abc.com:8080/ 以“.”分割为字符串数组时,方法如下: String domainNam="http://www.vvcc.abc.com:8080/"; String[] splitStr = domainNam.split("\\."); 必须经过转义后才能分割,单纯的以domainNam.split(".");分割时,结构字符串数组长度为...原创 2009-10-12 12:33:46 · 150 阅读 · 0 评论 -
用java将数据写入excel
首先需要一个JXL包,下载地址:http://download.csdn.net/source/292830 1、生成EXCEL需要手动写查询语句把ORACLE数据库中的数据查询出来,再通过操作写到EXCEL文件里面。 2、通过EXCEL把数据读取到ORACLE,同样需要去读取EXCEL工作薄里面的内容,再通过INSERT语句去插入数据库操作。示例: 包括从Excel读取数据,生成新的Exce...原创 2009-10-15 12:16:27 · 2959 阅读 · 0 评论 -
split()
java中split 方法可以把一个字符串分割为子字符串,然后将结果作为字符串数组返回。stringObj.split([separator,[limit]])参数stringObj 必选项。要被分解的 String 对象或文字。该对象不会被 split 方法修改。separator 可选项。字符串或 正则表达式 对象,它标识了分隔字符串时使用的是一个还是多个字符。如果忽略该...原创 2011-09-29 12:23:06 · 162 阅读 · 0 评论