• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 05:31
CET 11:31
KST 19:31
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13
Community News
Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge1[TLMC] Fall/Winter 2025 Ladder Map Rotation14Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45
StarCraft 2
General
[TLMC] Fall/Winter 2025 Ladder Map Rotation RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge Mech is the composition that needs teleportation t RSL Season 3 - RO16 Groups C & D Preview
Tourneys
2025 RSL Offline Finals Dates + Ticket Sales! $5,000+ WardiTV 2025 Championship RSL Revival: Season 3 Sparkling Tuna Cup - Weekly Open Tournament Constellation Cup - Main Event - Stellar Fest
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle What happened to TvZ on Retro? BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review BW General Discussion
Tourneys
[BSL21] GosuLeague T1 Ro16 - Tue & Thu 22:00 CET [Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] RO32 Group D - Sunday 21:00 CET
Strategy
Current Meta How to stay on top of macro? PvZ map balance Simple Questions, Simple Answers
Other Games
General Games
Clair Obscur - Expedition 33 Stormgate/Frost Giant Megathread Beyond All Reason Should offensive tower rushing be viable in RTS games? Path of Exile
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread The Games Industry And ATVI Things Aren’t Peaceful in Palestine About SC2SEA.COM
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2078 users

[Help] Learning Java - Page 2

Blogs > Coagulation
Post a Reply
Prev 1 2 All
vek
Profile Joined March 2010
Australia936 Posts
Last Edited: 2011-01-30 04:16:31
January 30 2011 04:07 GMT
#21
Well I'd recommend Eclipse. Messing around with classpaths and all that junk can come later when it's important and you have a reason to. If you want to jump into coding and learning OOP then get an IDE and go mad. I included a quick tutorial that should get you started:

I first learned java on Eclipse and still use Eclipse for work today. It is very easy for a beginner to work with because you can ignore all the advanced functions and just use what you need.

Okay first you obviously want to install eclipse and the JDK:
http://www.oracle.com/technetwork/java/javase/downloads/index.html (Download JDK)
http://www.eclipse.org/downloads/ (Eclipse IDE for Java Developers)

When you first start it up you'll see something like this and possibly something asking about a workspace location:
+ Show Spoiler +
[image loading]


Now I remember when I first started out I just said to myself what is this shit. The trick is just to close it and get to the workbench. If you are asked to specify a workspace just pick a sensible location. The default it suggests is probably fine. A workspace is a bunch of folders that contain things like:
- Eclipse settings/preferences
- Your projects

For example if you were doing work at school and at home I'd have my workspace on a USB drive and point eclipse to that workspace.

Onto the next screen.

Your workbench should look somewhat like this. Your package explorer on the left, editor in the center and console down the bottom.

If you want to write some code the first thing is making a new project. Right click on some blank space in your package explorer and go to new > java project.
+ Show Spoiler +
[image loading]


Fill out the project name and hit finish. You can ignore the rest of the advanced options.
+ Show Spoiler +
[image loading]


Now we want to make a class. It's important to always make sure your classes start with a CapitalLetterLikeThis and that the class name share the name of the CapitalLetterLikeThis.java file.

Right click on the src folder > new > class.
+ Show Spoiler +
[image loading]


Name the class HelloWorld and hit finish. You could also optionally tick the auto main method generation but that's just lazy
+ Show Spoiler +
[image loading]


Here you can type your code into the editor. I just did a simple "hello world". Once you are done and providing there are no syntax errors you can hit the "play" button to run your application. The output will appear in the lower part of your screen in the "console" tab.

If you manage to create a program that goes into an infinite loop you can hit the stop button to terminate it.
+ Show Spoiler +
[image loading]


That's pretty much it for my simple Eclipse tutorial

I'll give you one last tip though. Since you'll be writing a lot of console based applications in the beginning you'll have to write System.out.println a lot and as you can guess this is pretty annoying. Luckily Eclipse is awesome. You can just write the shorthand version "sysout", hit CTRL+Space and Eclipse will do the rest.

[image loading]

Hope this helps. I know other people suggest Netbeans but I've never liked it. I found Eclipse is easier to get started with and more flexible in the long run.

Edit: spoilered big images cause my post ended up way bigger than I expected D:
Coagulation
Profile Blog Joined July 2006
United States9633 Posts
Last Edited: 2011-01-30 04:56:38
January 30 2011 04:49 GMT
#22
wow thanks for the step by step vek
i will download eclipse and see if its any more user friendly.

so far i have made a calculator in netbeans using a guide.
djcube
Profile Blog Joined July 2009
United States985 Posts
January 30 2011 04:54 GMT
#23
On January 30 2011 13:49 Coagulation wrote:
wow thanks for the step by step vek
i will download eclipse and see if its any more user friendly.

so far i have made a calculator innetbeans using a guide.

Hah like a full blown calculator with a gui? That's pretty advanced for having just started coding
Disregard
Profile Blog Joined March 2007
China10252 Posts
January 30 2011 05:13 GMT
#24
On January 30 2011 13:49 Coagulation wrote:
wow thanks for the step by step vek
i will download eclipse and see if its any more user friendly.

so far i have made a calculator in netbeans using a guide.


Awesome, if I wouldve written something like that for practice... Probably be a million lines of code, still trying to find my "style". Pretty much still lack experience in efficiently optimizing code and maybe I should just focus on one language instead of trying to learn multiple like some wannabe brainiac.

Though its fun once you get into it but sometimes I go on a brief hiatus, I havent practiced the past 2 weeks after going on a 1 month winter break.
"If I had to take a drug in order to be free, I'm screwed. Freedom exists in the mind, otherwise it doesn't exist."
gravity
Profile Joined March 2004
Australia1988 Posts
Last Edited: 2011-01-30 08:29:52
January 30 2011 08:28 GMT
#25
If you have never done any sort of programming before I'd recommend following this free Python book/tutorial rather than using Java:

http://learnpythonthehardway.org/index

edit: Sounds like you're off to an ok start though, if you can make a calculator already (and understand what you're doing) then the above book may be too simple .
Deleted User 61629
Profile Blog Joined March 2010
1664 Posts
Last Edited: 2011-01-30 10:17:32
January 30 2011 10:16 GMT
#26
--- Nuked ---
Entropic
Profile Blog Joined May 2009
Canada2837 Posts
January 30 2011 10:38 GMT
#27
On January 30 2011 17:28 gravity wrote:
If you have never done any sort of programming before I'd recommend following this free Python book/tutorial rather than using Java:

http://learnpythonthehardway.org/index

edit: Sounds like you're off to an ok start though, if you can make a calculator already (and understand what you're doing) then the above book may be too simple .


Thanks for the link, was looking for some nice tutorials for total (like last place bronze league) noobs in programming like me.
Disregard
Profile Blog Joined March 2007
China10252 Posts
January 30 2011 11:11 GMT
#28
On January 30 2011 19:16 Inori wrote:
Show nested quote +
On January 30 2011 08:12 Coagulation wrote:
I have been wanting to get into learning coding (simple stuff )and from what i understand java is a good start point.

???????
Out of all the languages out there for "simple stuff", you choose Java? What, Ruby, Python, PHP and etc were too hard for you?

On a serious note, after Oracle bought Sun, I wouldn't recommend anyone learning Java, simple stuff or not. It will be going downhill, just like MySQL is already. Trust me.


Im finding more and more people telling me this, too bad my uni decided to do Java instead of the usual C++ or Python this year... I have to continue and complete this last course before I move on. Though Im trying to teach myself C++.
"If I had to take a drug in order to be free, I'm screwed. Freedom exists in the mind, otherwise it doesn't exist."
Finskie
Profile Blog Joined March 2010
Sweden412 Posts
January 30 2011 12:48 GMT
#29
Dont chose Java. Please. You will thank me later. Go C++/C# or Python. I'd rather have learned even Bash than fucking Java. If you must, go for Eclipse for coding.
Violet.
fanta[Rn]
Profile Blog Joined October 2004
Japan2465 Posts
January 30 2011 14:33 GMT
#30
Java is not so bad, makes transition to other languages also quite easy.

C# is probably better though
djcube
Profile Blog Joined July 2009
United States985 Posts
January 30 2011 14:57 GMT
#31
Yeah I'm no expert or anything, but like fanta said, I learned Java first and it was pretty easy learning other languages after wards.

I'm curious (as someone who wants to learn more about the field) why Java gets so much hate?
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
January 30 2011 15:01 GMT
#32
Because Oracle bought Sun.

Once you learn the OO paradigm, no matter the language you learnt first, its going to be an easy transition to any other OO language.

Also, Java isn't going downhill so fast. The Android platform is growing strong, Java is still a good language to have in your curriculum.
"When the geyser died, a probe came out" - SirJolt
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2011-02-05 02:17:25
February 05 2011 02:15 GMT
#33
On January 31 2011 00:01 fabiano wrote:
Because Oracle bought Sun.

Once you learn the OO paradigm, no matter the language you learnt first, its going to be an easy transition to any other OO language.

Also, Java isn't going downhill so fast. The Android platform is growing strong, Java is still a good language to have in your curriculum.


Even though oracle is trying to screw us all there are still open source alternatives like open JDK. As long as oracle's tactics don't divide java into a bunch of different flavors everything will be okay.

And I totally agree -- java isn't going anywhere - but I might be biased because my future depends on it . . .
Cloud
Profile Blog Joined November 2004
Sexico5880 Posts
Last Edited: 2011-02-05 04:07:50
February 05 2011 04:02 GMT
#34
I think you should learn Python or Scheme instead. Python is easy to learn and very powerful, more so than Java, also object-oriented if that's what you're aiming for. Scheme completely lacks syntax and so you can focus on actually learning about programming instead of bothering yourself with learning syntax rules and is very powerful as well. Java is way too verbose and its power comes from the huge number of libraries and tools like Eclipse or Netbeans and that in a way teaches you bad habits if it's your first language.

The best book for Scheme I think is The little schemer, SICP is probably better for depth but a little
too difficult and heavy to start in my opinion (it's a weedout introductory course by MIT).
It's easier to find a python book, surf the web or go to your local library and look for o'reilly introductory Python books.

Here's an article that may be of interest to you: http://www.catb.org/~esr/faqs/hacker-howto.html

You should stay away from c/c++ at the moment, they're just not powerful enough and they only serve specific purposes. Python and scheme(lisp) are much more general purpose.
BlueLaguna on West, msg for game.
vijayaustin
Profile Joined January 2019
1 Post
January 26 2019 13:01 GMT
#35
--- Nuked ---
rojaraja
Profile Joined January 2019
1 Post
January 30 2019 06:31 GMT
#36
--- Nuked ---
Prev 1 2 All
Please log in or register to reply.
Live Events Refresh
Next event in 1h 29m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 127
ProTech118
Livibee 100
StarCraft: Brood War
Calm 5707
GuemChi 1982
Stork 543
BeSt 476
Pusan 408
Larva 387
EffOrt 253
Leta 204
Killer 175
Zeus 174
[ Show more ]
Dewaltoss 80
ToSsGirL 71
Rush 56
ZerO 40
hero 38
Mind 37
yabsab 32
Barracks 29
Movie 26
Noble 12
Terrorterran 10
Dota 2
XaKoH 474
XcaliburYe84
League of Legends
JimRising 446
Reynor116
Counter-Strike
olofmeister1450
shoxiejesuss635
Other Games
summit1g15708
ceh9524
Fuzer 238
Happy226
crisheroes132
Pyrionflax129
Trikslyr39
NeuroSwarm39
ZerO(Twitch)3
Organizations
Dota 2
PGL Dota 2 - Main Stream10149
PGL Dota 2 - Secondary Stream1722
Other Games
gamesdonequick579
BasetradeTV26
StarCraft: Brood War
lovetv 13
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• Berry_CruncH169
• LUISG 29
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt712
Upcoming Events
WardiTV Korean Royale
1h 29m
BSL: GosuLeague
10h 29m
PiGosaur Cup
14h 29m
The PondCast
23h 29m
Replay Cast
1d 12h
RSL Revival
1d 23h
herO vs Zoun
Classic vs Reynor
Maru vs SHIN
MaxPax vs TriGGeR
BSL: GosuLeague
2 days
RSL Revival
2 days
WardiTV Korean Royale
3 days
RSL Revival
3 days
[ Show More ]
WardiTV Korean Royale
4 days
IPSL
4 days
Julia vs Artosis
JDConan vs DragOn
RSL Revival
4 days
Wardi Open
5 days
IPSL
5 days
StRyKeR vs OldBoy
Sziky vs Tarson
Replay Cast
5 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2025-11-14
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
RSL Revival: Season 3
META Madness #9
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.