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 & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • 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
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • 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 473 subscribers
  • Views 820 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
Parents
  • 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
Reply
  • 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
Children
  • 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
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