时间:2021-05-21
在对时间进行转换中,通常会把秒转换成时分秒的小功能,怎么才能做到呢,其实也简单 这就涉及到时分秒之间的相互转换
具体代码如下:
import android.content.Context;public class ToolsUtil { private static ToolsUtil toolsUtil; private Context mContext; private ToolsUtil(Context context) { mContext = context.getApplicationContext(); } public static ToolsUtil getInstance(Context context) { if (toolsUtil == null) { toolsUtil = new ToolsUtil(context); } return toolsUtil; } public String timeConversion(int time) { int hour = 0; int minutes = 0; int sencond = 0; int temp = time % 3600; if (time > 3600) { hour = time / 3600; if (temp != 0) { if (temp > 60) { minutes = temp / 60; if (temp % 60 != 0) { sencond = temp % 60; } } else { sencond = temp; } } } else { minutes = time / 60; if (time % 60 != 0) { sencond = time % 60; } } return (hour<10?("0"+hour):hour) + ":" + (minutes<10?("0"+minutes):minutes) + ":" + (sencond<10?("0"+sencond):sencond); }}这样就把时间转换成 00:00:00 的时间格式了
ps:下面看下android通过秒换算成时分秒
把秒换算成时分秒
public static String cal(int second) { int h = 0; int d = 0; int s = 0; int temp = second % 3600; if (second > 3600) { h = second / 3600; if (temp != 0) { if (temp > 60) { d = temp / 60; if (temp % 60 != 0) { s = temp % 60; } } else { s = temp; } } } else { d = second / 60; if (second % 60 != 0) { s = second % 60; } } return h + "时" + d + "分" + s + "秒"; }通过秒分别得出多少小时多少分多少秒
public class TimeUtils { public static String getHours(long second) {//计算秒有多少小时 long h = 00; if (second > 3600) { h = second / 3600; } return h+""; } public static String getMins(long second) {//计算秒有多少分 long d = 00; long temp = second % 3600; if (second > 3600) { if (temp != 0) { if (temp > 60) { d = temp / 60; } } } else { d = second / 60; } return d + ""; } public static String getSeconds(long second) {//计算秒有多少秒 long s = 0; long temp = second % 3600; if (second > 3600) { if (temp != 0) { if (temp > 60) { if (temp % 60 != 0) { s = temp % 60; } } else { s = temp; } } } else { if (second % 60 != 0) { s = second % 60; } } return s + ""; }}总结
到此这篇关于Android 实现秒转换成时分秒的方法的文章就介绍到这了,更多相关Android 秒转换成时分秒内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#实现毫秒转换成时分秒的方法。分享给大家供大家参考。具体实现方法如下:publicstaticStringformatLongToTimeStr
秒数与时分秒格式转换的代码.版本2.程序集窗口程序集1.子程序_秒数转换成时间按钮_被单击.局部变量总秒数.局部变量时.局部变量分.局部变量秒总秒数=到数值(输
处理数据的时候遇到一个问题,从数据库里导出的数据是时分秒的格式:hh:mm:ss,现在我需要把它转换成秒,方便计算。原数据可能分两种情况,字段有可能是文本字符串
EXCEL中如何将时分秒转换成分钟数?转换起来也很方便哦,下面为大家详细介绍一下,不会的朋友可以参考本文! 步骤 1、首先打开excel表格,输入一些时
EXCEL中如何将时分秒转换成分钟数?转换起来也很方便哦,下面小编就为大家详细介绍一下,不会的朋友可以参考本文!软件名称:Excel2003绿色版EXCEL20