15

I am new to Java and want to create a Desktop application in Java. This application Reads and Writes different files.

Would someone please recomend me, what do i need for that and should I purchase a book or something else.

Thanks

user160820
  • 14,866
  • 22
  • 67
  • 94

5 Answers5

9

create a Desktop application in Java

Learn Swing/awt/JFX.

This application Reads and Writes different files.

Learn File Operation in java

Harry Joy
  • 58,650
  • 30
  • 162
  • 207
3

I suggest using NetBeans IDE and follow its tutorials. Its the easiest way to develop a Java Deskotp Application with a GUI.

aseychell
  • 1,794
  • 17
  • 35
2

Head First Java is a nice textbook. It gets you up and running very fast and it's even fun to read *gasp*

das_weezul
  • 6,082
  • 2
  • 28
  • 33
2

After completing the basics and if you happen to use Eclipse IDE, hava a look at Google's WindowBuilder Pro. It is an Eclipse Plugin for quickly developing Swing Interfaces.

Minhaj Arfin
  • 1,021
  • 9
  • 8
Sai Kumar
  • 2,231
  • 3
  • 17
  • 15
1

In Java, most graphical interfaces are created using a framework called Swing. I suggest you take a look at Oracle's Swing tutorial in order to get you easily started.

Jonas Kongslund
  • 5,058
  • 2
  • 28
  • 27