NetBeans IDE questions & answers

Integrated development environment for Java desktop, mobile and web apps
G
Question by Guest
499 views
April 24, 2022
G
Answer by Guest

yes!why there is no Netbeans IDE 8.2 for 64 bit

J
Question by Jijy
250 views
February 1, 2022
A
Answer by Akash Shah

Yes, NetBeans 12.6 does work on Windows 10.

G
Question by Guest
341 views
October 26, 2021
A
Answer by Ashish Bajaj

Yes, version 12.4 of NetBeans IDE can work on Windows 7.

G
Question by Guest
879 views
July 27, 2008

Can I install NetBeans IDE on a computer with 256MB RAM memory?

G
Answer by Guest

yes maybe try it. what is your OS?

Guest #28973576
Question by Guest #28973576
729 views
December 23, 2013
M
Answer by Michael Neumann

PHP is a server-side scripting language designed for web development, it's very flexible in terms of what you can do with it.
For it to work on your PC I recommend you install EasyPHP , it has everything needed to get you started like, Apache 2 web-server and Mysql 5.5, that is a database required for more complex PHP scripts to work.
After installing EasyPHP, you can now open a Notepad and test how are things going by typing, for example : .After you can go ahead and click: File > Save as > demo.php ,while making sure you set the Save as type to "All Files".
Now you can go to your browser and open "demo.php" with it. You should be able see the text "It works!"

C
Question by Cena2011
652 views
April 8, 2011

How can I create mobile applications or games using NetBeans? I'm a newbie.

M
Answer by MasterBETA

Try learning Java. It's the language used by Andriod OS and multiple webpages.

G
Question by Guest
444 views
September 10, 2015

Is Python available in NetBeans?

A
Answer by Alex Urbach

Yes, Python is available in NetBeans 8.0.2. However, this feature is community driver which means the developers don't offer full support. There is a page created to show you how to get started using Python in NetBeans IDE.


You should use the following page created by Oracle to see how to integrate and enable Python language inside NetBeans IDE: https://blogs.oracle.com/geertjan/entry/python_in_netbeans_ide_81

G
Question by Guest
427 views
October 19, 2021
S
Answer by Saumya Sharma

The download link for NetBeans IDE 8.0.2 can be found on the official Apache NetBeans website. You may need to search specifically for the older version as the default link may direct you to the latest version.

G
Question by Guest
422 views
September 10, 2015

Are there additional color schemes and themes available for NetBeans? How do I get them and install them?

A
Answer by Alex Urbach

Yes, there are additional color schemes and themes for NetBeans and they can be downloaded through the Plugins page created by the developers. The themes are also developed by other NetBeans users. Access the Plugins page below.


Plugins page: http://plugins.netbeans.org/PluginPortal/


Once you download a theme, open NetBeans then go to Tools > Options > Import and select the ZIP file you've downloaded.


Tip: To narrow down results to display only themes, use Fun Stuff option from the Category drop down menu.

ram mansawala
Question by ram mansawala
422 views
October 3, 2013

This is my play/pause code in Netbeans 7.3.1. I can't pause audio and play it from where I paused it. Is there any simple code?


My code:


if(jToggleButton1.getText().equals("Pause"))
{
time=mediaPlayer.getCurrentTime();
mediaPlayer.stop();
jToggleButton1.setText("Play");
isplaying=false;
}
else
{
mediaPlayer.setStartTime(time);
mediaPlayer.play();
jToggleButton1.setText("Pause");
isplaying=true;
}
A
Answer by Aiden McLeod

Try using threads and ActionListener. Something like this:


public void actionPerformed(ActionEvent evt) {
SwingUtilities.invokeLater(new Runnable() {
public void run();
mediaplayier.stop();
} });
}

Here you can read more about ActionListener and threads.

See more questions & answers

Ask a question about NetBeans IDE

Alternative downloads

BlueJ
Free
rating

Develop Java programs in an IDE designed for beginners.

Komodo IDE
rating

Integrated development environment for editing, debugging and testing software.

groovy
Free
rating

This is dynamic language software for the Java platform.