NO NETBEANS PROJECTS ADDED Error - java

I am trying to import a projetc (in ZIP file) in my netbeans8.2. It is downloaded from GitHub (link: https://github.com/wdalmut/vanet). While importing the project from Zip it shows the error and no project becomes imported. Why this happening and how can I run a complete project into netbeans 8.2 ?

The import from zip option in netbeans doesn't support importing anything, its only meant to import other netbeans projects that have been packed as a zip file. If you want to import existing code into netbeans you will need to do so manually. For help doing this you can refer to this article on the netbeans site.

Related

Import source project in eclipse

I need to import a source Project in eclipse. The project is made by many folder like Classes (that contain .class files), src(that contain .java files) and many others. The source project and the instructions on how to set up eclipse are reported at this link. I tried to follow them but I haven't got anything. I think this is a simple thing but I'm new to eclipse.
My eclipse actual version is eclipse java neon 2.
My OS is ubuntu.
You could choose to create a new Project from the File Options and then select Project from existing sources which choosing the source directory.
Second approach could be to just use File > import Project wizard.

How to import the java code as a project to IDE?

I download a API form USPS, and when I tried to import them to my IDE(netbeans), I got error message. So I tried Eclipse is also not work.
So, is there a way to import them to my IDE? :)
in netbeans IDE add them as library.
click on your project node you will see library node and then right click on library node you can add jar or library to your own project.

Importing GraphStream library in NetBeans 8.0

I am just getting started with GraphStream and using NetBeans as an IDE in my laptop (Yosemite 10.10). I already downloaded and included .jar library file into my project:
My problem is I still can’t import graphstream in my class. This is what I wrote:
import org.graphstream.graph.*;
but I’m still getting the error message
Package import org.graphstream.graph.* doesn’t exist
Is there any way to import GraphStream in my NetBeans? Any help would be appreciated. Thank you.
You have to extract those 3 gs-*.zip files that you downloaded from the website. Then, inside the extracted folders you will find gs-*.jar files. These are the actual binaries that Netbeans needs as dependencies.

Trying to import NetBeans Project from an older version using .forms

I'm trying to import a NetBeans project from an older version (6.9.1) to the latest (8.0). I've gotten the necessary forms with a few .java files too. I try importing them from a .zip file but it tells "No NetBeans projects added" after telling me they already exist.
Please help.
Thank you :)
Perhaps the file format has changed? There is no backward compatibility guaranteed for such a a old NB version, you are coming from.
But the following should work: Import your 6.9.1 projects into 7.0.1 and export them. Then import the exported into 7.1 and export gain. Then imported the exported project (from 7.1) into 7.2 and export... (you get the idea)

importing android library to eclipse downloaded from github

i want to download and edit and android library project from github and make jar file again and use it. i want to download and edit this project:
ACRA project
i use eclipse. and my question is that how can i import this source code to eclipse and edit it? i download it and import it to eclipse but its not normal! it has 3 src folder and alot of folders like doc and ... and it has some errors... you know, i want only src folder with library configurations. it seems its a package for not use in development environment!
as you can see in the picture i uploaded, src package is inside some folders and... its not normal not? please help me

Categories