element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Embedded and Microcontrollers
  • Technologies
  • More
Embedded and Microcontrollers
Embedded Forum Java date and time issue with BBB
  • Blog
  • Forum
  • Documents
  • Quiz
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Embedded and Microcontrollers to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 7 replies
  • Answers 2 answers
  • Subscribers 462 subscribers
  • Views 629 views
  • Users 0 members are here
Related

Java date and time issue with BBB

ramanc51
ramanc51 over 9 years ago

Hi all

        In my java app i am reading date time from BBB with externally connected RTC using java library that provided for data/time, my issue is  i am not able to read  time as expected(hh:mm:ss), anybody faced similar issue?, is there any solution?

  • Sign in to reply
  • Cancel
  • clem57
    0 clem57 over 9 years ago

    When you use Java app, it uses standard library that probably doesn't use the RTC hardware. I would write my own and solve that problem. Read Date and time in Java about Unix time and you will understand why. The RTC chip on the other handle will be better if you read directly.

    Clem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • ramanc51
    0 ramanc51 over 9 years ago in reply to clem57

    Ok, but my BBB is showing correct time on display on it's right corner just like our normal PC, but when we get time through java library it print's different one(time).

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • clem57
    0 clem57 over 9 years ago in reply to ramanc51

    Trying not to be condescending, but what is displayed on BBB is not from Java library! Please read Date and time in Java to see what you will get in Java environment,,

    Clem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • ramanc51
    0 ramanc51 over 9 years ago in reply to clem57

    Yes, i understand, it seems that BBB takes time from /etc/default/hwclock() ,I'm assuming because the RTC1 (DS1307) is loaded via a script when Debian boots the hwclock has already loaded and defaulted to RTC0 because my external RTC1 is yet to be loaded.

     

    Note:

             i edit /etc/default/hwclock() to my external RTC1, but no result

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 9 years ago

    this means that we need a way to set the time when the board is running. If you wish to set the time you could do it on a once-off basis…

    root@beaglebone:~# date

    Sat Jan  1 12:27:56 GMT 2000

    Shell

    root@beaglebone:~# ntpdate -b -s -u pool.ntp.org

    root@beaglebone:~# date

    Sat May 18 22:52:56 BST 2013

    Next, find a NTP server that is close to your location. We need to do this to be good ‘ntp citizens’ as it is not good to use a NTP root server as they are already heavily loaded … it is better to use a NTP pool server that is close to your location in order to help with load balancing.

    # This is the most basic ntp configuration file

    # The driftfile must remain in a place specific to this

    # machine - it records the machine specific clock error

    driftfile /etc/ntp.drift

    logfile /var/log/ntpd.log

    # NTP Servers for Ireland from www.pool.ntp.org

    server 0.ie.pool.ntp.org

    server 1.ie.pool.ntp.org

    server 2.ie.pool.ntp.org

    server 3.ie.pool.ntp.org

    # Using local hardware clock as fallback

    # Disable this when using ntpd -q -g -x as ntpdate or it will sync to itself

    # server 127.127.1.0

    # fudge 127.127.1.0 stratum 14

    # Defining a default security setting

    restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

    The LocalTime class is similar to the other classes whose names are prefixed with Local, but deals in time only. This class is useful for representing human-based time of day, such as movie times, or the opening and closing times of the local library. It could also be used to create a digital clock, as shown in the following example:

    LocalTime thisSec;

    for (;;) {

        thisSec = LocalTime.now();

        // implementation of display code is left to the reader

        display(thisSec.getHour(), thisSec.getMinute(), thisSec.getSecond());

    }

    The LocalTime class does not store time zone or daylight saving time information.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • Former Member
    0 Former Member over 9 years ago in reply to Former Member

    Had the same issue. Thankfully resolved.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 9 years ago

    Speaking of time zone, you can retrieve it as a symbol or offset from UTC along with the local date and time by using Java 8 class ZonedDateTime.  A simple example follows.

     

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    import java.time.format.DateTimeFormatter; 
    import java.time.ZonedDateTime; 
    public class dateeg {
          public static void main( String [ ] args )      {
               ZonedDateTime zdt = ZonedDateTime.now();
               DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss VV");
               System.out.println( "Now = " + zdt.format(formatter) );
          }
    }

    Execution for me in Dallas Texas USA:
    Now = 13:17:18 America/Chicago

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube