Code Monkey home page Code Monkey logo

Comments (6)

klaszlo8207 avatar klaszlo8207 commented on July 17, 2024

+1 for this, on my Galaxy S7 this is working, but on my Nexus6 this ends up with a big crash :(

from binance-java-api.

Blogshot avatar Blogshot commented on July 17, 2024

+1 for this

from binance-java-api.

gizmochief7 avatar gizmochief7 commented on July 17, 2024

I had the same problem, and I pulled in the PR which has fixed the issue. There are still many other issues that will affect the stability of a long running process but they seem to be in work too.

from binance-java-api.

joaopsilva avatar joaopsilva commented on July 17, 2024

Duplicate of #8.

from binance-java-api.

AdamPavlik avatar AdamPavlik commented on July 17, 2024

Library gets time from System.currentTimeMillis(); thats is your machin time, machine time can grift a bit, so you needjust synchronise your time.

for example for windows OS you need just:
a. Click on clock and select “Change date and time settings”.
b. Click on the “Internet Time” tab.
c. Check if it is set to “synchronize the time with time.windows.com”
d. If the option is selected, click on change settings to check the option “Synchronize with an Internet Time server”
e. Click on OK.

from binance-java-api.

jonnyquy avatar jonnyquy commented on July 17, 2024

Your problem will be solved.

public long TimeZone() {
try {
String TIME_SERVER = "time.windows.com";
NTPUDPClient timeClient = new NTPUDPClient();
InetAddress inetAddress = InetAddress.getByName(TIME_SERVER);
TimeInfo timeInfo = timeClient.getTime(inetAddress);
long returnTime = timeInfo.getMessage().getTransmitTimeStamp().getTime();
Date time = new Date(returnTime);
return time.getTime();
} catch (UnknownHostException ex) {
Logger.getLogger(ActionTradeSpot.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(ActionTradeSpot.class.getName()).log(Level.SEVERE, null, ex);
}
return 0;
}

from binance-java-api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.