字符串实验一Java常用工具类编程

java编程工具  时间:2021-02-26  阅读:()

实验一Java常用工具类编程

§ 1.1实验指导

1、 String类使用

String类表示字符串。 在Java程序中所有的字符串常量如"abc"都被实现为这个类的实例。

1) 、构造函数

String s1="java";

String s2=new String("java") ;

2) 、 比较函数

①==比较引用是否相同if(s1==s2) //返回false

②equals() :比较串内容是否相同if(s1.equals(s2) )//返回true

③compareTo() :比较内容,返回数字s1.compareTo(s2)

如果s1>s2 则返回>0

如果s1=s2 则返回0

如果s1<s2 则返回<0

3) 、取子串substring() ,取字符charAt(index)

String s1="hello java";s1. substring(start,end) ;s1. substring(0,3) ;//start到end-1

String s2=s1. substring(6, 10) ;

4) 、分割split() ;

String s1="c++, java,vb.net";

String[] str=s1. split(", ") ;

String s2="c++. java.vb";

String s2="c++. java.vb dotnet";

String[] str=s2. split("\\. | ") ;for(int i=0; i<str. length; i++)

System.out.println(str[i] ) ;

2、 StringBuffer类

StringBufferpubl ic StringBuffer()

构造一个不包含字符的字符串缓冲区其初始的容量设为16个字符。

StringBufferpubl ic StringBuffer(int length)构造一个不包含字符的字符串缓冲区其初始的容量由参数length设置。

StringBufferpubl ic StringBuffer(String str)构造一个字符串缓冲区来表示和字符串参数相同的字符序列。len gthpubl icint length()返回字符串缓冲区的长度(字符数)。capacitypubl ic int capacity()返回字符串缓冲区的当前容量。 该容量表示可用于插入新的字符的存储空间超出该容量时会发生新的容量分配。ensureCapacitypublic synchronized void ensureCapacity(int minimumCapacity) 保证缓冲区的容量至少等于指定的最小数。 如果字符串缓冲区的当前容量少于该参数 则分配一个新的更大的内部缓冲区。 新容量将取如下参数中较大的一个setLengthpublic synchronized void setLength(int newLength) 设置该字符串缓冲区的长度。 如果参数newLength小于该字符串缓冲区的当前长度。 该字符串缓冲区将被截断来包含恰好等于由参数newLength给出的字符数。a p pe n dpublic synchronized StringBuffer append(Object obj) 把Object型参数的字符串表示添加到该字符串缓冲区。

StringBuffer x=new StringBuffer().append("a").append(4).append("c") .toString();i n se rtpublic synchronized StringBuffer insert(int offset, Object obj) 把Object型参数的字符串表示插入到字符串缓冲区。reversepublic synchronized StringBuffer reverse() 该字符串缓冲区的字符序列被其反向字符序列所替换。toStringpublic String toString() 转换为一个表示该字符串缓冲区数据的字符串。 分配一个新的String对象并且用字符串缓冲区所表示的字符序列进行初始化。 于是此String被返回。 随后缓冲区发生的变化不再影响该String的内容。

3、 日期类示例

1 获取服务器端当前日期import java.util.Date;

Date myDate = new Date() ;

2)获取当前年、 月、 日

Date myDate = new Date() ;int thisYear = myDate.getYear() + 1900;//thisYear = 2009int thisMonth = myDate.getMonth() + 1 ;//thisMonth = 10int thisDate = myDate.getDate() ;//thisDate = 30

3)按本地时区输出当前日期

Date myDate = new Date() ;

out.println(myDate. toLocaleString() ) ;

输出结果为

2003-5-30

4)按照指定格式打印日期import "java.util.Date";import "java. text.DateFormat";

Date dNow = new Date() ;

SimpleDateFormat formatter =new SimpleDateFormat("E yyyy.MM.dd 'at' hh:mm:ss a zzz") ;

System.out.println("It is " + formatter.format(dNow) ) ;

输出的结果为

It is星期五2003.05.30 at 1 1 :30:46上午CST

5)将字符串转换为日期import="java.util.Date"import="java. text.DateFormat"

String input = "1222-11-11";

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd") ;Date t = null;try{t = formatter.parse(input) ;

System.out.println(t) ;

}catch(ParseException e) {

System.out.println("unparseable using" + formatter) ;

}

输出结果为

Fri Nov 1 1 00:00:00 CST 1222

6)计算日期之间的间隔getTime()函数返回日期与1900-01-0100:00:00相差的毫秒数import="java.util.Date"import="java. text.DateFormat"

String input = "2003-05-01";

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd") ;Date d1 = null;

Date d2 = new Date() ;long diff = d2.getTime() - d1.getTime() ;out.println("Difference is " + (diff/(1000*60*60*24) ) + " days. ") ;输出结果为

Difference is 29 days.

7) 日期的加减运算

方法 用Calendar类的add()方法

Calendar now = Calendar.getInstance() ;

SimpleDateFormat formatter = new SimpleDateFormat("E yyyy.MM.dd 'at'hh:mm:ss a zzz") ;out.println("It is now " + formatter.format(now.getTime() ) ) ;now.add(Calendar.DAY_OF_YEAR,-(365*2) ) ;out.println("<br>") ;out.println("Two years ago was " + formatter.format(now.getTime() ) ) ;输出结果为

It is now星期五2003.05.30 at 01:45:32下午CST

Two years ago was星期三2001 .05.30 at 01 :45:32下午CST

8)比较日期

方法 用equals()、 before()、 after()方法import="java.util.*"import="java. text.*"

DateFormat df = new SimpleDateFormat("yyy-MM-dd") ;

Date d1 = df.parse("2000-01-01") ;

Date d2 = df.parse("1999-12-31") ;

String relation = null;if(d1. equals(d2) )relation = "the same date as";else if(d1.before(d2) )relation = "before";elserelation = "after";

System.out.println(d1 +" is " + relation + ' ' + d2) ;

输出结果为

Sat Jan 01 00:00:00 CST 2000 is after Fri Dec 31 00:00:00 CST 1999

§ 1.2实验题目

1 、使用类String类的分割spl it将字符串 “Solutions to selected exercises can be foundin the electronic document The Thinking in Java Annotated Solution Guide, avai lablefor a smal l fee from BruceEckel”单词提取输出。单词以空格或,分割。package j ob1;

public class Split {public static void main(String[ ] args) {

String s1="Solutions to selected exercises " +

"can be found in the electronic document " +

"The Thinking in Java Annotated Solution Guide, " +

"available for a small fee from BruceEckel";

String s2 [ ]=s1.split(" | , ") ;for(int i=0;i<s2.length;i++)

System.out.println(s2 [i] ) ;

}

}

2、设计一个类Student,类的属性有姓名 学号 出生日期性别所在系等。并生成学生类对象数组。按照学生的姓名将学生排序输出。使用String类的compareTo方法。package job1;public class Student {private String name;private int num;private String birth;private String sex;private String sdept;public Student( ) {

}public Student(String name,int num,String birth,String sex,Stringsdepet) {this.name=name;this.num=num;this.birth=birth;this.sex=sex;this.sdept=sdept;

}public String getName( ) {return name;

}public void setName(String name) {

this.name=name;

}public int getNum( ) {return num;

}public void setNum(int num) {this.num=num;

}public String getBirth( ) {return birth;

}public void setBirth(String birth) {this.birth=birth;

}public String getSex( ) {return sex;

}public void setSex(String sex) {this.sex=sex;

}public String getSdept( ) {return sdept;

}public void setSdept(String sdept) {this.sdept=sdept;

}

}package job1;import java.util.Comparator;import java.text.CollationKey;import java.text.Collator;public class MyCmp implements Comparator{public int compare(Object obj1,Object obj2) {

Collator collator=Collator.getInstance( ) ;

CollationKey key1=collator.getCollationKey(obj1.toString( ) ) ;CollationKey key2=collator.getCollationKey(obj2.toString( ) ) ;return key1.compareTo(key2) ;

}

}package job1;import java.util.*;public class TreeText {public static void main(String[ ] args) {

TreeMap map=new TreeMap(new MyCmp( ) ) ;

map.put("蒋高登", "20081851 1990-08-03 男 CS") ;map.put("蒋稀文", "20081852 1989-01-11 男 CS") ;map.put("董骏", "20081850 1990-04-05 男 CS") ;Set keys=map.entrySet( ) ;

Iterator it=keys.iterator( ) ;while(it.hasNext( ) ) {

Map.Entry e=(Map.Entry) it.next( ) ;

System.out.println(e.getKey( )+" "+e.getValue( ) ) ;}

}

}

3、设计一个程序计算2011-05-01 日与系统当前日期相差的天数。package job1 ;import java.text.ParseException;import java.text.SimpleDateFormat;import java.uti l .Date;publ ic class Days{publ ic static void main(String[]args) throws ParseException{

Date d1=new Date();

SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd");String s="2011-05-01";

Date d2=format.parse(s);

int days=(int)((d2.getTime()-d 1 .getTime())/(1000*60*60*24));

System.out.print("2011-05-01 日与系统当前时间相差"+days+"天");

}

}

4、使用日历类等相关方法按截图做出一个日历参照书本示例,研究其中代码回顾与复习利用Java Swing编程。

参考 以下函数根据输入的年和月计算相应的数字publ ic void showCalendar(intyear, int month){

Calendar cal=Calendar.getInstance();cal .set(Calendar.YEAR,year);cal .set(Calendar.MONTH,month-1);

//计算当前月一共有多少天int days=cal .getActualMaximum(Calendar.DAY_OF_MONT H);

//计算当前月的1号为星期几cal .set(Calendar.DAY_OF_MONTH, 1);//设置为1号int firstweek=cal .get(Calendar.DAY_OF_WEEK);

。 。 。 。 。

}package job1 ;import java.awt.BorderLayout;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.uti l .Calendar;import javax.swing.*;import javax.swing.table.DefaultTableModel ;publ ic class CalendarTable extends JFrame implementsActionListener{private JLabel label_year=new JLabel("年");private JLabel label_month=newJLabel("月");private JComboBox box_year=new JComboBox();private JComboBox box_month=new JComboBox();private JButton btn=new JButton("确定");private JTable table;private String week[]={"日","一","二","三","四","五","六"};private String rows[][]=newString[6][7];

DMIT(季度$28.88)调整洛杉矶CN2 GIA优化端口

对于DMIT商家已经关注有一些时候,看到不少的隔壁朋友们都有分享到,但是这篇还是我第一次分享这个服务商。根据看介绍,DMIT是一家成立于2017年的美国商家,据说是由几位留美学生创立的,数据中心位于香港、伯力G-Core和洛杉矶,主打香港CN2直连云服务器、美国CN2直连云服务器产品。最近看到DMIT商家有对洛杉矶CN2 GIA VPS端口进行了升级,不过价格没有变化,依然是季付28.88美元起。...

腾讯云CVM云服务器大硬盘方案400GB和800GB数据盘方案

最近看到群里的不少网友在搭建大数据内容网站,内容量有百万篇幅,包括图片可能有超过50GB,如果一台服务器有需要多个站点的话,那肯定默认的服务器50GB存储空间是不够用的。如果单独在购买数据盘会成本提高不少。这里我们看到腾讯云促销活动中有2款带大数据盘的套餐还是比较实惠的,一台是400GB数据盘,一台是800GB数据盘,适合他们的大数据网站。 直达链接 - 腾讯云 大数据盘套餐服务器这里我们看到当前...

可抵御99%的攻击中国单域版cdn:9元/月7T防御 cloudsecre

官方网站:点击访问CDN客服QQ:123008公司名:贵州青辞赋文化传媒有限公司域名和IP被墙封了怎么办?用cloudsecre.com网站被攻击了怎么办?用cloudsecre.com问:黑客为什么要找网站来攻击?答:黑客需要找肉鸡。问:什么是肉鸡?答:被控的服务器和电脑主机就是肉鸡。问:肉鸡有什么作用?答:肉鸡的作用非常多,可以用来干违法的事情,通常的行为有:VPN拨号,流量P2P,攻击傀儡,...

java编程工具为你推荐
最新qq空间代码qq空间最新免费代码缓冲区溢出教程哪里可以下载黑客教程,详细网址,免费开通黄钻能免费开通黄钻吗??百度抢票浏览器百度手机浏览器怎么抢票 手机百度浏览器抢票方法自助建站自助建站可信吗?伪静态如何设置伪静态规则手机区号打电话怎么加区号?网店推广网站什么平台适合做淘宝店铺推广苹果5怎么越狱苹果5怎么越狱腾讯文章腾讯新闻的精选微信里面收藏的文章在哪里
北京vps 国外vps主机 新通用顶级域名 oneasiahost bandwagonhost 安云加速器 lamp配置 免费ftp空间申请 全站静态化 圣诞促销 最好的免费空间 股票老左 免费全能主机 免费cdn 厦门电信 移动服务器托管 便宜空间 网站加速 卡巴斯基官网下载 asp空间 更多