How to create Cryptocurancy App using javasteemCreated with Sketch.

in #technology8 years ago

Hello dear steemit friends,

today i am going to show you how to create small java application for coin market. first you need to small things.

1.small java knowledge
2.java development kit ( JDK ) you can download
3.IDE ( i am using netbeans )
4.small brain
5.1 laptop
6.2 hand
7.jsoup library

ok guys, now we are ready for do that.

install netbeans ide and after

  1. file >> New project >> Java >> Java application >> project name and path >> finish

fisrt you need to design this user interface using netbeans ide or another ide.

THIS IS VERY IMPORTENT : add jsoup libry to you project. google " how to add libry to netbeans project"

Screenshot_2.png

and we are going to code our application. no no it is not complicated. too easy .

double click "start market button" or right click Event >> action >> action performed
then code like this.

" doc = Jsoup.connect("https://coinmarketcap.com/currencies/digibyte/").get();"

 you can change this link to other currancy. like this.

" doc = Jsoup.connect("https://coinmarketcap.com/currencies/dash/").get();"

 i think you are enjoying this article.  i hope to another  tutorial for   crypto application.
you can develop this application. this is too small.
hope you learn something.

Good Luck!