Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open Non-Netbeans project in Netbeans?

Tags:

netbeans

When we create a (PHP) project in Netbeans 7, it somehow saves the directory in its own format, and later we can open the project in Netbeans. However, I have a project which I created without Netbeans, now I want to open it with Netbeans, but seems that I can not. When I "Open Project" in Netbeans, and browse to the directory, it does not not recognize the directory. So how can I open a Non-Netbeans project in it? Thanks.

like image 756
Peter Avatar asked Mar 24 '11 14:03

Peter


People also ask

Why my project is not showing in NetBeans?

A few thoughts: [1] Instead of cmd 1 use Window -> Projects to open the Projects window. [2] Create a new project. That should open the Projects window if it is not already open. [3] If you still don't have a Projects window then open the NetBeans log file using View -> IDE Log and look for any relevant error messages.

How do I open a source file in NetBeans?

As with any project opened in NetBeans IDE, you can open files in the Source Editor by double-clicking on their nodes, as they appear in the IDE's windows (e.g., Projects (Ctrl-1), Files (Ctrl-2), Favorites (Ctrl-3) windows).

How do I view a project file in NetBeans?

Open the project in NetBeans In NetBeans, select "File" from the menu bar, then "Open project..." and select the location where the file was saved from RobotBuilder. The project will be opened and you will see it in the "Projects" tab on the left side of the NetBeans window.


2 Answers

In NetBeans IDE 8.0.1

  1. File->New Project
  2. Select PHP-> PHP Existing Sources, Click Next
  3. Browse Source Folder and Select it
  4. Give project a name
  5. If you want you can keep a backup in a separate directory, Click Next
  6. And select your Server
  7. Click Finish
like image 169
lost_in_magento Avatar answered Jan 03 '23 18:01

lost_in_magento


Select "File" > "New Project"

Under "Categories" select "Java"

Under "Projects" select "Java Project with Existing Sources"

You'll then need to tell it which directory contains your sources and which directory contains your JUnit tests.

like image 41
Devon_C_Miller Avatar answered Jan 03 '23 16:01

Devon_C_Miller