Java Code Examples for java.util.Date.getSeconds()
The following are Jave code examples for showing how to use
getSeconds() of the
java.util.Date
class.
You can vote up the examples you like. Your votes will be used in our system to get
more good examples.
+ Save this method
Example 1
Project: javaide File: ZioEntry.java View Source Code | 8 votes |
public void setTime(long time) { Date d = new Date(time); long dtime; int year = d.getYear() + 1900; if (year < 1980) { dtime = (1 << 21) | (1 << 16); } else { dtime = (year - 1980) << 25 | (d.getMonth() + 1) << 21 | d.getDate() << 16 | d.getHours() << 11 | d.getMinutes() << 5 | d.getSeconds() >> 1; } modificationDate = (short)(dtime >> 16); modificationTime = (short)(dtime & 0xFFFF); }
Example 2
Project: mobile-store File: ZioEntry.java View Source Code | 6 votes |
public void setTime(long time) { Date d = new Date(time); long dtime; int year = d.getYear() + 1900; if (year < 1980) { dtime = (1 << 21) | (1 << 16); } else { dtime = (year - 1980) << 25 | (d.getMonth() + 1) << 21 | d.getDate() << 16 | d.getHours() << 11 | d.getMinutes() << 5 | d.getSeconds() >> 1; } modificationDate = (short)(dtime >> 16); modificationTime = (short)(dtime & 0xFFFF); }
Example 3
Project: myfaces-trinidad File: DateTimeConverterTestCase.java View Source Code | 6 votes |
/** * @todo have to solve the milli second problem that which is there.!! * @param convDate * @param expectedDate * @return */ @SuppressWarnings("deprecation") protected static boolean isEqual(Date convDate, Date expectedDate) { GregorianCalendar convGcal = new GregorianCalendar(); convGcal.setTime(convDate); GregorianCalendar expGcal = new GregorianCalendar(); expGcal.setTime(expectedDate); // -= Simon Lessard =- // FIXME: Switch to Calendar methods return (convDate.getSeconds() == expectedDate.getSeconds()) && (convDate.getYear() == expectedDate.getYear()) && (convDate.getMonth() == expectedDate.getMonth()) && (convDate.getDate() == expectedDate.getDate()) && (convDate.getHours() == expectedDate.getHours()) && (convDate.getMinutes() == expectedDate.getMinutes()) ; }
Example 4
Project: smile_1.5.0_java7 File: DateFeature.java View Source Code | 5 votes |
@Override @SuppressWarnings("deprecation") public double[] feature(Date date) { double[] x = new double[types.length]; for (int i = 0; i < types.length; i++) switch (types[i]) { case YEAR: x[i] = 1900 + date.getYear(); break; case MONTH: x[i] = date.getMonth(); break; case DAY_OF_MONTH: x[i] = date.getDate(); break; case DAY_OF_WEEK: x[i] = date.getDay(); break; case HOURS: x[i] = date.getHours(); break; case MINUTES: x[i] = date.getMinutes(); break; case SECONDS: x[i] = date.getSeconds(); break; default: throw new IllegalStateException("Unknown date feature type: " + types[i]); } return x; }
Example 5
Project: OpenJSharp File: ZipUtils.java View Source Code | 5 votes |
public static long javaToDosTime(long time) { Date d = new Date(time); int year = d.getYear() + 1900; if (year < 1980) { return (1 << 21) | (1 << 16); } return (year - 1980) << 25 | (d.getMonth() + 1) << 21 | d.getDate() << 16 | d.getHours() << 11 | d.getMinutes() << 5 | d.getSeconds() >> 1; }
Example 6
Project: OpenJSharp File: ZipUtils.java View Source Code | 5 votes |
/** * Converts Java time to DOS time. */ @SuppressWarnings("deprecation") // Use of date methods public static long javaToDosTime(long time) { Date d = new Date(time); int year = d.getYear() + 1900; if (year < 1980) { return (1 << 21) | (1 << 16); } return (year - 1980) << 25 | (d.getMonth() + 1) << 21 | d.getDate() << 16 | d.getHours() << 11 | d.getMinutes() << 5 | d.getSeconds() >> 1; }
Example 7
Project: jdk8u-jdk File: ZipUtils.java View Source Code | 5 votes |
public static long javaToDosTime(long time) { Date d = new Date(time); int year = d.getYear() + 1900; if (year < 1980) { return (1 << 21) | (1 << 16); } return (year - 1980) << 25 | (d.getMonth() + 1) << 21 | d.getDate() << 16 | d.getHours() << 11 | d.getMinutes() << 5 | d.getSeconds() >> 1; }
Example 8
Project: jdk8u-jdk File: ZipUtils.java View Source Code | 5 votes |
/** * Converts Java time to DOS time. */ @SuppressWarnings("deprecation") // Use of date methods private static long javaToDosTime(long time) { Date d = new Date(time); int year = d.getYear() + 1900; if (year < 1980) { return ZipEntry.DOSTIME_BEFORE_1980; } return (year - 1980) << 25 | (d.getMonth() + 1) << 21 | d.getDate() << 16 | d.getHours() << 11 | d.getMinutes() << 5 | d.getSeconds() >> 1; }
Example 9
Project: PaySim File: ParameterizedPaySim.java View Source Code | 5 votes |
private void initSimulatorName(){ Date d = new Date(); ParameterizedPaySim.simulatorName = "PS_" + (d.getYear() + 1900) + (d.getMonth() + 1) + d.getDate() + d.getHours() + d.getMinutes() + d.getSeconds() + "_" + this.seed; //System.out.println(simulatorName + "\n"); File f = new File(System.getProperty("user.dir") +"//outputs//" + ParameterizedPaySim.simulatorName); f.mkdir(); }
Example 10
Project: HL4A File: 时间工具.java View Source Code | 4 votes |
public static Integer 秒钟(Date $时间) { return $时间.getSeconds(); }
Example 11
Project: calendar-component File: DateConstants.java View Source Code | 4 votes |
public static CalDate toRPCDateTime(Date date) { return new CalDate(date.getYear() + 1900, date.getMonth() + 1, date.getDate(), new CalTime(date.getHours(), date.getMinutes(), date.getSeconds())); }
Example 12
Project: yaacc-code File: UpnpClientTest.java View Source Code | 4 votes |
protected void startMusicPlay(UpnpClient upnpClient, Device<?, ?, ?> device, boolean background, String instanceId) { ContentDirectoryBrowseResult browseResult; browseResult = upnpClient.browseSync(device, instanceId); List<Item> items = browseResult.getResult().getItems(); for (Item item : items) { Log.d(getClass().getName(), "ParentId: " + item.getParentID()); Log.d(getClass().getName(), "ItemId: " + item.getId()); Res resource = item.getFirstResource(); if (resource == null) break; Log.d(getClass().getName(), "ImportUri: " + resource.getImportUri()); Log.d(getClass().getName(), "Duration: " + resource.getDuration()); Log.d(getClass().getName(), "ProtocolInfo: " + resource.getProtocolInfo()); Log.d(getClass().getName(), "ContentFormat: " + resource.getProtocolInfo().getContentFormat()); Log.d(getClass().getName(), "Value: " + resource.getValue()); SimpleDateFormat dateFormat = new SimpleDateFormat("hh:mm:ss"); // just for a test int millis = 0; try { Date date = dateFormat.parse(resource.getDuration()); millis = date.getHours() * 60 * 60 * 1000; millis += date.getMinutes() * 60 * 1000; millis += date.getSeconds() * 1000; assertEquals(date.getTime(), millis); Log.d(getClass().getName(), "HappyHappy Joy Joy Duration in Millis=" + millis); Log.d(getClass().getName(), "Playing: " + item.getTitle()); if (background) { Log.d(getClass().getName(), "Starting Background service... "); Intent svc = new Intent(getContext(), BackgroundMusicService.class); svc.setData(Uri.parse(resource.getValue())); getContext().startService(svc); } else { intentView(resource.getProtocolInfo().getContentFormat(), Uri.parse(resource.getValue())); } } catch (ParseException e) { Log.d(getClass().getName(), "bad duration format"); ; } myWait(millis); } }
Example 13
Project: MyFire File: TimeUtil.java View Source Code | 2 votes |
/** * 将毫秒转换成秒 * * @param time * @return */ public static int convertToSecond(Long time) { Date date = new Date(); date.setTime(time); return date.getSeconds(); }