To download NetBeans IDE, visit https://netbeans.org/
Showing posts with label tools. Show all posts
Showing posts with label tools. Show all posts
Saturday, August 29, 2015
Install NetBeans IDE on Windows 10
This video show how to install NetBeans IDE (currently 8.0.2) on Microsoft Windows 10.
To download NetBeans IDE, visit https://netbeans.org/
To download NetBeans IDE, visit https://netbeans.org/
標籤:
how to,
NetBeans,
tools,
Windows 10
Friday, August 28, 2015
Install JDK 8 on Windows 10, and set Path
Browse to Oracle Java SE Downloads (http://www.oracle.com/technetwork/java/javase/downloads/index.html) to download the latest JDK.
Check the option to Accept License Agreement, and select the download file. "jdk-8u60-windows-x64.exe" in my case.
Run the downloaded file after download completed. And follow the steps.
After installed JDK, you have to set Path to it.
To set path, search "Environment Variables", click "Edit the system environment variables".
Click on "Environment Variables..."
Select and edit Path
Add the path of the bin folder of your JDK, "C:\Program Files\Java\jdk1.8.0_60\bin" in my case.
After path set, you can run javac in command prompt.
Check the option to Accept License Agreement, and select the download file. "jdk-8u60-windows-x64.exe" in my case.
Run the downloaded file after download completed. And follow the steps.
After installed JDK, you have to set Path to it.
To set path, search "Environment Variables", click "Edit the system environment variables".
Click on "Environment Variables..."
Select and edit Path
Add the path of the bin folder of your JDK, "C:\Program Files\Java\jdk1.8.0_60\bin" in my case.
After path set, you can run javac in command prompt.
標籤:
how to,
JDK8,
tools,
Windows 10
Tuesday, April 21, 2015
NetBeans IDE 8 Cookbook
Over 75 practical recipes to maximize your productivity with NetBeans
About This Book
- Increase developer productivity using features like refactoring and code creation
- Test applications effectively using JUnit, TestNG and Arquilian
- A recipe based guide filled with practical examples to help you create robust applications using NetBeans
If you're a Java developer of any level using NetBeans and want to learn how to get the most out of NetBeans, then this book is for you. Learning how to utilize NetBeans will provide a firm foundation for your Java application development.
In Detail
From the start to the end of a Java project's lifecycle, this book will show you how to perform many key tasks with the NetBeans IDE, uncovering more about mobile, desktop, and enterprise Java along the way.
You will start by creating Java projects and learning how to refactor and use NetBeans tools to increase developer efficiency. You will then get a walkthrough of how to create a desktop application before covering JavaFX and mobile applications and how to use external services within them. Having seen how to create many different types of applications, you will then be shown how to test and profile them before storing them in revision control systems such as Git or Subversion. Finally,you will learn how to extend NetBeans itself by adding new features to the IDE.
Saturday, February 8, 2014
NetBeans IDE 8.0 Beta, working with Java 8
NetBeans IDE 8.0 Beta provides out-of-the-box code analyzers and editors for working with the latest Java 8 technologies--Java SE 8, Java SE Embedded 8, and Java ME Embedded 8. The IDE also has a range of new enhancements that further improve its support for Maven and Java EE with PrimeFaces; new tools for HTML5, in particular for AngularJS; and improvements to PHP and C/C++ support.
https://netbeans.org/community/releases/80/
https://netbeans.org/community/releases/80/
Tuesday, January 14, 2014
Tuesday, December 3, 2013
IntelliJ IDEA 13 released
IntelliJ IDEA 13 released. Every new release of IntelliJ IDEA brings changes to every part of the IDE, including the UI, the editor, tools and frameworks integration, and more. See what's new in IntelliJ IDEA 13.
Saturday, November 30, 2013
Run the Nerbeans generated jar of JavaFX application as stand alone program
To run the jar generated by Netbeans IDE, we have to locate the target folder. Click Run in Netbeans IDE > Clean and Build Project. Once BUILD SUCCESSFUL, the Created dir will be shown on Output window.
Open File Manager and open the created dir. You can find a Executable Jar file.
You can run it by double clicking. And also you can create desktop shortcut of it.
Related: - Run Netbeans generated jar of Java program as stand alone program and create desktop shortcut
Open File Manager and open the created dir. You can find a Executable Jar file.
You can run it by double clicking. And also you can create desktop shortcut of it.
Related: - Run Netbeans generated jar of Java program as stand alone program and create desktop shortcut
Thursday, October 17, 2013
NetBeans IDE 7.4
NetBeans IDE 7.4 extends the advanced HTML5 development support introduced in NetBeans IDE 7.3 to Java EE and PHP application development, while offering new support for hybrid HTML5 application development on the Android and iOS platforms. In addition, this release provides support for working with preview versions of JDK 8, and includes continued enhancements to JavaFX, C/C++ and more.
NetBeans IDE 7.4 is available in English, Brazilian Portuguese, Japanese, Russian, and Simplified Chinese.
Download NetBeans IDE 7.4
NetBeans IDE 7.4 is available in English, Brazilian Portuguese, Japanese, Russian, and Simplified Chinese.
Download NetBeans IDE 7.4
Wednesday, July 31, 2013
JavaFX Support in NetBeans IDE
JavaFX Support in NetBeans IDE
This screencast demonstrates JavaFX-related features that are implemented in NetBeans IDE 7.4 Beta, including the JavaFX runtime classpath, the alignment of JavaFX and Java SE projects and the JavaFX Maven project template.
This screencast demonstrates JavaFX-related features that are implemented in NetBeans IDE 7.4 Beta, including the JavaFX runtime classpath, the alignment of JavaFX and Java SE projects and the JavaFX Maven project template.
Sunday, June 23, 2013
Setup RxTx jar and .so for Ubuntu
The former post describe how to "Install RXTX on Ubuntu". It simple download the files to your system, but Java not know where is it! To work with installed RxTx, you have to setup Build Path to compile the code, and copy the binaries (.so files) to java library path.
Setup Java Build Path in NetBeans:
If build path not set correctly, error of "package gnu.io does not exist" will be thrown.
- Right click your project, select Properties.
- Select Libraries in Categories, Compiler tab and click Add JAR/Folder button.
- Browse to select RXTXcomm.jar, should be in /usr/share/java folder, and click OK to accept.
- Click OK again to finish. It should be compiled without error.
Copy the binaries (.so files) to java library path:
Without corresponding .so files in java library path, you will get error of "UnsatisfiedLinkError: no rxtxSerial in java.library.path" in run time, like this:
java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path thrown while loading gnu.io.RXTXCommDriver
Exception in thread "main" java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1878)
at java.lang.Runtime.loadLibrary0(Runtime.java:849)
at java.lang.System.loadLibrary(System.java:1087)
at gnu.io.CommPortIdentifier.<clinit>(CommPortIdentifier.java:123)
at serialtest.SerialTest.initialize(SerialTest.java:41)
at serialtest.SerialTest.main(SerialTest.java:109)
- Refer to the post "Get property of java library path" to know where is the library folder.
- Copy the binaries librxtxSerial.so and librxtxParallel.so (should be in /usr/lib/jni/) to one of the library folder (for example: /opt/java/jre/lib/i386/).
$sudo cp /usr/lib/jni/librxtxSerial.so /opt/java/jre/lib/i386/librxtxSerial.so
$sudo cp /usr/lib/jni/librxtxParallel.so /opt/java/jre/lib/i386/librxtxParallel.so
Setup Java Build Path in NetBeans:
If build path not set correctly, error of "package gnu.io does not exist" will be thrown.
![]() |
"package gnu.io does not exist" thrown without Build Path set |
![]() |
Setup project properties |
![]() |
Add JAR/Folder |
![]() |
Add RXTXcomm.jar |
Copy the binaries (.so files) to java library path:
Without corresponding .so files in java library path, you will get error of "UnsatisfiedLinkError: no rxtxSerial in java.library.path" in run time, like this:
java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path thrown while loading gnu.io.RXTXCommDriver
Exception in thread "main" java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1878)
at java.lang.Runtime.loadLibrary0(Runtime.java:849)
at java.lang.System.loadLibrary(System.java:1087)
at gnu.io.CommPortIdentifier.<clinit>(CommPortIdentifier.java:123)
at serialtest.SerialTest.initialize(SerialTest.java:41)
at serialtest.SerialTest.main(SerialTest.java:109)
![]() |
UnsatisfiedLinkError |
- Refer to the post "Get property of java library path" to know where is the library folder.
- Copy the binaries librxtxSerial.so and librxtxParallel.so (should be in /usr/lib/jni/) to one of the library folder (for example: /opt/java/jre/lib/i386/).
$sudo cp /usr/lib/jni/librxtxSerial.so /opt/java/jre/lib/i386/librxtxSerial.so
$sudo cp /usr/lib/jni/librxtxParallel.so /opt/java/jre/lib/i386/librxtxParallel.so
Saturday, June 22, 2013
Install RXTX on Ubuntu
RXTX is a full implementation of the Java CommAPI from Sun. It contains native libraries providing serial and parallel communication for the Java Development Toolkit.
A easy way to install RXTX on Ubuntu is using Synaptic Package Manager (Synaptic Package Manager is available in Ubuntu Software Center).
Simple search rxtx in Synaptic Package Manager, and mark to install
The jars will be installed in /usr/share/java folder.
- Alternatively, you can use the command in Terminal:
$sudo apt-get install librxtx-java
Remark: It copy the files only. To make it work with Java, you have to "Setup RxTx jar and .so for Ubuntu".
A easy way to install RXTX on Ubuntu is using Synaptic Package Manager (Synaptic Package Manager is available in Ubuntu Software Center).
Simple search rxtx in Synaptic Package Manager, and mark to install
![]() |
Install RxTx on Ubuntu with Synaptic Package Manager |
The jars will be installed in /usr/share/java folder.
- Alternatively, you can use the command in Terminal:
$sudo apt-get install librxtx-java
Remark: It copy the files only. To make it work with Java, you have to "Setup RxTx jar and .so for Ubuntu".
Sunday, May 19, 2013
Android development arrive IntelliJ
EARLY ACCESS PREVIEW of Android Studio is available now. Android Studio is a new Android development environment based on IntelliJ IDEA. Similar to Eclipse with the ADT Plugin, Android Studio provides integrated Android developer tools for development and debugging.
Android Studio is currently available as an early access preview. Several features are either incomplete or not yet implemented and you may encounter bugs.
Android Studio is currently available as an early access preview. Several features are either incomplete or not yet implemented and you may encounter bugs.
Wednesday, April 17, 2013
Java SE 7, SE 6 and SE Embedded 7 update released
Oracle has released three updates to Java:
- Java SE 7 Update 21
This release contains new features and fixes for security vulnerabilities, including a new Server JRE, JRE Installer linked with Uninstall Applet on Windows platform, changes to Security Dialogs and more. Oracle strongly recommends that all Java SE 7 users upgrade to this release.
- Java SE 6 Update 45
This release contains fixes for security vulnerabilities.
- Java SE Embedded 7 Update 21
This release is based on Java Development Kit 7 Update 21 (JDK 7u21) and provides specific features and support for embedded systems.
Wednesday, March 20, 2013
Setting up your Java Dev Environment
YouTube Developers Live: Setting up your Java Dev Environment
Want to learn how to setup your IDE and Maven for YouTube API Java development? Join +Ikai Lan and +Ibrahim Ulukaya as they start from scratch and end up with a productive YouTube API Java development environment.
They will cover IDE setup, Maven integration and go over Java code samples of the YouTube Data API v3. Whether you are an experienced developer working through initial YouTube API library setup or a new developer ready to get started, this show will be great DIY guide!
Friday, March 15, 2013
Play plugin for NetBeans IDE 7.3
The NetBeans plugin for Play, is now available in the NetBeans Plugin Portal, ready to use in NetBeans IDE 7.3.
http://plugins.netbeans.org/plugin/47637/?show=true
Install the plugin into 7.3 and then you're able to create new Play projects via the New Project dialog or open any existing Play project.
Know more: https://blogs.oracle.com/geertjan/entry/play_in_netbeans_ide_7
http://plugins.netbeans.org/plugin/47637/?show=true
Install the plugin into 7.3 and then you're able to create new Play projects via the New Project dialog or open any existing Play project.
![]() |
Play plugin for NetBeans IDE 7.3 |
Know more: https://blogs.oracle.com/geertjan/entry/play_in_netbeans_ide_7
Play Framework - Build Modern and Scalable Web Apps with Java and Scala
Play is a high-productivity Java and Scala web application framework that integrates the components and APIs you need for modern web application development.
Play is based on a lightweight, stateless, web-friendly architecture and features predictable and minimal resource consumption (CPU, memory, threads) for highly-scalable applications thanks to its reactive model, based on Iteratee IO.
Website: http://www.playframework.com/
Play is based on a lightweight, stateless, web-friendly architecture and features predictable and minimal resource consumption (CPU, memory, threads) for highly-scalable applications thanks to its reactive model, based on Iteratee IO.
Website: http://www.playframework.com/
Thursday, March 7, 2013
Java SE 7u17, Java SE 6 Update 43 and JDK8(Early Access)
Java SE 7u17, Java SE 6 Update 43 is now available: http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html
And also, you can download the latest preview updates JDK 8, the next generation of the Java Development Kit. Source code may be found through the OpenJDK jdk8 project.
Oracle releases periodic early access snapshots of the binaries and documentation for JDK 8 snapshots on java.net. These raw snapshots let you review and contribute to the Java SE platform as it is being developed.
![]() |
Java SE Download |
And also, you can download the latest preview updates JDK 8, the next generation of the Java Development Kit. Source code may be found through the OpenJDK jdk8 project.
Oracle releases periodic early access snapshots of the binaries and documentation for JDK 8 snapshots on java.net. These raw snapshots let you review and contribute to the Java SE platform as it is being developed.
![]() |
JDK 8 snapshots on java.net |
Thursday, February 7, 2013
NetBeans IDE 7.3 RC2 Released
NetBeans IDE 7.3 RC2 Released.
What's New in 7.3 RC2
What's New in 7.3 RC2
- Rich Web applications (HTML5, JavaScript, CSS)
- Extended clipboard and refactoring improvements in Java Editor
- JavaTM SE Development Kit 7 Update 10 support
- Full support of JavaFX 2.2.4 SDK
- Support for JavaME SDK 3.2
- Additional enhancements are listed on the NetBeans IDE 7.3 New and Noteworthy page.
For more about this release, see the NetBeans IDE 7.3 RC2 Release Information page.
Monday, January 28, 2013
NetBeans IDE 7.3 Release Candidate Now Available
The NetBeans Team announce the Release Candidate build of NetBeans IDE 7.3.
NetBeans IDE 7.3 provides new support for the latest HTML5, JavaScript, and CSS standards, as well as enhancements to support for Groovy, PHP and many other features.
Source: NetBeans.org Community News
Wednesday, January 16, 2013
Install Netbeans IDE 7.2 on release version Windows 8
TO download Netbeans, visit http://netbeans.org/, click the Download button.
Scroll download the select the download option. Java SE in my case.
Run the download file, netbeans-7.2.1-ml-javase-windows.exe.
Click Next to start installation.
Accept the terms in the license agreement, and click Next.
Accept the terms t install JUnit, and click Next.
Select the location to install. The installer will search te installed JDK if exist. Next.
Review all the setting, and click Install.
Finish.
Scroll download the select the download option. Java SE in my case.
Run the download file, netbeans-7.2.1-ml-javase-windows.exe.
Click Next to start installation.
Accept the terms in the license agreement, and click Next.
Accept the terms t install JUnit, and click Next.
Select the location to install. The installer will search te installed JDK if exist. Next.
Review all the setting, and click Install.
Finish.
標籤:
how to,
installation,
NetBeans,
tools
Subscribe to:
Posts (Atom)