0

I am making a text editor but I can't find any way in which I can save the code like a modern IDE or notepad. Native windows notepad pops out a file-explorer to choose the path to save the file, can I make it in java?

mertk
  • 19
  • 1
  • 10
Coder
  • 31
  • 4

1 Answers1

0

Don't know which technology you're using for the GUI but the Swing JFileChooser is just what you are looking for:

https://docs.oracle.com/javase/tutorial/uiswing/components/filechooser.html

Conffusion
  • 4,335
  • 2
  • 16
  • 28