Import github code into eclipse Oxygen

2

I have a code that I would like to import into my eclipse through the zip download, however at the time of importing the following error

  

No projects are found to import

How to import a Java project from github to my eclipse so I can do the same?

Project that I want to download. link

    
asked by anonymous 04.05.2018 / 05:00

1 answer

1

This is not a git repository or a Java project.

It's just an isolated Java class in a Gist.

GitHub Gist is a simple way to share code, notes, texts and so on. It's something like Pastebin . It is not a git repository. This is an example of a git repository with a Java project using Maven.

In order for you to "have" this class, there is no secret: create a Java project in Eclipse, create a class called DoublyLinkedList and copy the contents of the Gist and paste it into your class. This is how you use a code that is in the Gist.

    
04.05.2018 / 15:36