会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
许先
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
上一页
1
2
3
4
5
6
7
8
···
12
下一页
2016年5月28日
9.包装类的构造方法
摘要: public class Demo { public static void main(String[] args) { //所有包装类都可将与之对应的基本数据类型作为参数,来构造它们的实例 Integer i=new Integer(34); Double d=new Double(98.7); Boolean b=new...
阅读全文
posted @ 2016-05-28 00:49 许先
阅读(344)
评论(0)
推荐(0)
编辑
8.包装类常用方法
摘要: /** * 包装类常用方法 * */ public class Demo { public static void main(String[] args){ //XXXValue():包装类转换成基本类型 Integer integerId=new Integer(25); int intId=integerId.intValue()...
阅读全文
posted @ 2016-05-28 00:48 许先
阅读(334)
评论(0)
推荐(1)
编辑
7.StringBuffer类的使用
摘要: package cn.jbit.classandobject; import java.util.*; public class TestInsert { /** * 每隔三位插入逗号 * */ public static void main(String[] args) { Scanner input = new...
阅读全文
posted @ 2016-05-28 00:47 许先
阅读(218)
评论(0)
推荐(0)
编辑
6.Random类
摘要: import java.util.Random; public class RandomDemo { public static void main(String[] args) { Random rand=new Random(); //创建一个Random对象 for(int i=0;i<20;i++){//随机生成20个随机整数,并显示 ...
阅读全文
posted @ 2016-05-28 00:46 许先
阅读(154)
评论(0)
推荐(0)
编辑
5. 字符串提取
摘要: 1 import java.util.*; 2 3 public class Verify{ 4 public static void main(String[] args) { 5 // 声明变量 6 boolean fileCorrect = false; //标识文件名是否正确 7 boolean emailC...
阅读全文
posted @ 2016-05-28 00:45 许先
阅读(136)
评论(0)
推荐(0)
编辑
4.字符串连接
摘要: public class PrintScore { /** * 打印成绩单 * */ public static void main(String[] args) { int sqlScore = 80; //SQL成绩 int javaScore = 90; //Java...
阅读全文
posted @ 2016-05-28 00:41 许先
阅读(157)
评论(0)
推荐(0)
编辑
2.Calendar类的使用
摘要: import java.util.Calendar; public class Test { public static void main(String[] args) { Calendar t = Calendar.getInstance(); System.out.println("今天是"+t.get(Calendar.YEAR)+"年" ...
阅读全文
posted @ 2016-05-28 00:40 许先
阅读(186)
评论(0)
推荐(0)
编辑
3. 忽略大小写的字符串比较
摘要: import java.util.*; public class Login { /** * 登录 * */ public static void main(String[] args) { Scanner input = new Scanner(System.in); String uname,pwd; ...
阅读全文
posted @ 2016-05-28 00:40 许先
阅读(298)
评论(0)
推荐(0)
编辑
1.==和equals()
摘要: public class StrEqu { public static void main(String[] args) { String str1="bdqn"; String str2="bdqn"; System.out.println(str1==str2); System.out.println(str1.equa...
阅读全文
posted @ 2016-05-28 00:39 许先
阅读(478)
评论(0)
推荐(0)
编辑
50.使用DOM4J解析XML文件
摘要: 需要导入dom4j-1.6.1.jar 收藏信息.xml 新收藏.xml
阅读全文
posted @ 2016-05-28 00:36 许先
阅读(505)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
···
12
下一页