Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简单的菜鸟问题:我应该使用 java.util 来获取 android 应用程序的系统日期和时间,还是应该使用 android 日历类。Java 对我来说更容易使用,因为它让我更容易获得星期几。请指导。
谢谢
编辑:我希望应用程序在没有互联网连接的情况下运行,从手机上获取时间和日期。
使用日历。
Calendar cal = Calendar.getInstance(); int week = cal.get(Calendar.DAY_OF_WEEK);
您也可以考虑Time类。