Why new project is not opening in Netbeans in ubuntu 16.04?
up vote
1
down vote
favorite
I've installed Java 9 and netbeans 8.2. When I open netbeans and click new project then nothing shows.
netbeans
add a comment |
up vote
1
down vote
favorite
I've installed Java 9 and netbeans 8.2. When I open netbeans and click new project then nothing shows.
netbeans
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I've installed Java 9 and netbeans 8.2. When I open netbeans and click new project then nothing shows.
netbeans
I've installed Java 9 and netbeans 8.2. When I open netbeans and click new project then nothing shows.
netbeans
netbeans
asked Nov 19 '17 at 8:44
Mony FI
612
612
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
You maybe missing the Mobility plugin.
Also ensure that you actually have the JDK installed:
- Tools>Plugin
- Access the Installed tab (to see what plugins are currently installed on your system)
You may also have a corrupted user,dir
; delete the userdir in its entirety, then restart Netbeans.
System.getProperty("user.dir") can be used to find the path of user.dir
add a comment |
up vote
0
down vote
Oracle Netbeans works with Java 8, but although Java 9 has been officially released there are still a few features that are unsupported in Java 9 in Netbeans.
There is a tutorial about how to start using Java 9 in Netbeans in Ubuntu at JDK9Support - Netbeans Wiki *. The asterisk after the link is a link to a permanent mirror site in case the original link is removed.
Java 8 works in Netbeans out of the box in Ubuntu 16.04. ⇒
Another alternative is to install both openjdk-8-jdk and openjdk-9-jdk and use either
update-alternatives
(which is installed by default in Ubuntu) orupdate-java-alternatives
(which is installed when openjdk-8-jdk is installed) to manually choose which Java to use before running an application.
$ update-java-alternatives
usage: update-java-alternatives [--jre-headless] [--jre] [--plugin] [-v|--verbose]
-l|--list [<jname>]
-s|--set <jname>
-a|--auto
-h|-?|--help
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f977967%2fwhy-new-project-is-not-opening-in-netbeans-in-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You maybe missing the Mobility plugin.
Also ensure that you actually have the JDK installed:
- Tools>Plugin
- Access the Installed tab (to see what plugins are currently installed on your system)
You may also have a corrupted user,dir
; delete the userdir in its entirety, then restart Netbeans.
System.getProperty("user.dir") can be used to find the path of user.dir
add a comment |
up vote
0
down vote
You maybe missing the Mobility plugin.
Also ensure that you actually have the JDK installed:
- Tools>Plugin
- Access the Installed tab (to see what plugins are currently installed on your system)
You may also have a corrupted user,dir
; delete the userdir in its entirety, then restart Netbeans.
System.getProperty("user.dir") can be used to find the path of user.dir
add a comment |
up vote
0
down vote
up vote
0
down vote
You maybe missing the Mobility plugin.
Also ensure that you actually have the JDK installed:
- Tools>Plugin
- Access the Installed tab (to see what plugins are currently installed on your system)
You may also have a corrupted user,dir
; delete the userdir in its entirety, then restart Netbeans.
System.getProperty("user.dir") can be used to find the path of user.dir
You maybe missing the Mobility plugin.
Also ensure that you actually have the JDK installed:
- Tools>Plugin
- Access the Installed tab (to see what plugins are currently installed on your system)
You may also have a corrupted user,dir
; delete the userdir in its entirety, then restart Netbeans.
System.getProperty("user.dir") can be used to find the path of user.dir
edited Nov 19 '17 at 8:57
answered Nov 19 '17 at 8:51
IronUhlan
716
716
add a comment |
add a comment |
up vote
0
down vote
Oracle Netbeans works with Java 8, but although Java 9 has been officially released there are still a few features that are unsupported in Java 9 in Netbeans.
There is a tutorial about how to start using Java 9 in Netbeans in Ubuntu at JDK9Support - Netbeans Wiki *. The asterisk after the link is a link to a permanent mirror site in case the original link is removed.
Java 8 works in Netbeans out of the box in Ubuntu 16.04. ⇒
Another alternative is to install both openjdk-8-jdk and openjdk-9-jdk and use either
update-alternatives
(which is installed by default in Ubuntu) orupdate-java-alternatives
(which is installed when openjdk-8-jdk is installed) to manually choose which Java to use before running an application.
$ update-java-alternatives
usage: update-java-alternatives [--jre-headless] [--jre] [--plugin] [-v|--verbose]
-l|--list [<jname>]
-s|--set <jname>
-a|--auto
-h|-?|--help
add a comment |
up vote
0
down vote
Oracle Netbeans works with Java 8, but although Java 9 has been officially released there are still a few features that are unsupported in Java 9 in Netbeans.
There is a tutorial about how to start using Java 9 in Netbeans in Ubuntu at JDK9Support - Netbeans Wiki *. The asterisk after the link is a link to a permanent mirror site in case the original link is removed.
Java 8 works in Netbeans out of the box in Ubuntu 16.04. ⇒
Another alternative is to install both openjdk-8-jdk and openjdk-9-jdk and use either
update-alternatives
(which is installed by default in Ubuntu) orupdate-java-alternatives
(which is installed when openjdk-8-jdk is installed) to manually choose which Java to use before running an application.
$ update-java-alternatives
usage: update-java-alternatives [--jre-headless] [--jre] [--plugin] [-v|--verbose]
-l|--list [<jname>]
-s|--set <jname>
-a|--auto
-h|-?|--help
add a comment |
up vote
0
down vote
up vote
0
down vote
Oracle Netbeans works with Java 8, but although Java 9 has been officially released there are still a few features that are unsupported in Java 9 in Netbeans.
There is a tutorial about how to start using Java 9 in Netbeans in Ubuntu at JDK9Support - Netbeans Wiki *. The asterisk after the link is a link to a permanent mirror site in case the original link is removed.
Java 8 works in Netbeans out of the box in Ubuntu 16.04. ⇒
Another alternative is to install both openjdk-8-jdk and openjdk-9-jdk and use either
update-alternatives
(which is installed by default in Ubuntu) orupdate-java-alternatives
(which is installed when openjdk-8-jdk is installed) to manually choose which Java to use before running an application.
$ update-java-alternatives
usage: update-java-alternatives [--jre-headless] [--jre] [--plugin] [-v|--verbose]
-l|--list [<jname>]
-s|--set <jname>
-a|--auto
-h|-?|--help
Oracle Netbeans works with Java 8, but although Java 9 has been officially released there are still a few features that are unsupported in Java 9 in Netbeans.
There is a tutorial about how to start using Java 9 in Netbeans in Ubuntu at JDK9Support - Netbeans Wiki *. The asterisk after the link is a link to a permanent mirror site in case the original link is removed.
Java 8 works in Netbeans out of the box in Ubuntu 16.04. ⇒
Another alternative is to install both openjdk-8-jdk and openjdk-9-jdk and use either
update-alternatives
(which is installed by default in Ubuntu) orupdate-java-alternatives
(which is installed when openjdk-8-jdk is installed) to manually choose which Java to use before running an application.
$ update-java-alternatives
usage: update-java-alternatives [--jre-headless] [--jre] [--plugin] [-v|--verbose]
-l|--list [<jname>]
-s|--set <jname>
-a|--auto
-h|-?|--help
edited Nov 6 at 18:03
answered Nov 19 '17 at 9:23
karel
56.1k11124142
56.1k11124142
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f977967%2fwhy-new-project-is-not-opening-in-netbeans-in-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown