码迷,mamicode.com
首页 > 编程语言 > 详细

java字符串 删除指定字符的那些事

时间:2017-08-30 10:05:39      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:form   calendar   输出   日期格式   time   stringbu   ++   去掉   index   

公司突然有这麽这需求:

1.算出2周以前的时间,以正常日期格式返回

2.如果月份和日期前面有0需要去掉返回结果,什么意思呢,比如:2017-08-15  就需要显示2017-8-15,你们说操蛋不,什么鬼需求,好了言归正传,直接撸代码。

 

Calendar calendar = Calendar.getInstance();
calendar.add(Calendar.DATE, -14);
Date date = calendar.getTime();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time = sdf.format(date);//这里输出的日期就是2周前的日期,输出为2017-08-16

 

第一种方法:

String result = "";

for(int i = 0; i< time.length(); i++){

  if ((i == 5 && time.charAt(i) == ‘0‘) | (i == 8 && time.charAt(i) == ‘0‘)){

    index += "";

  } else {

    index += time.charAt(i);

  }

}

system.out,printn(result);

 

第二种方法(最简单的方法,使用StringBuffer就Ok):

StringBuffer buffer = new StringBuffer(time);
if (buffer.charAt(5) == ‘0‘) {
  buffer.deleteCharAt(5);
}
if (buffer.charAt(7) == ‘0‘) {
  buffer.deleteCharAt(7);
}
System.out.println(buffer.toString());

java字符串 删除指定字符的那些事

标签:form   calendar   输出   日期格式   time   stringbu   ++   去掉   index   

原文地址:http://www.cnblogs.com/lyh1299259684/p/7451356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!